blob: 2141f922747ea1c58b2b1c1a6fcc0291d53def6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- s3.c.orig 2008-09-12 13:20:26.000000000 -0400
+++ s3.c 2008-09-12 13:20:36.000000000 -0400
@@ -1212,10 +1212,10 @@
if (!list_build_url_component(&uri, urldelim, "marker", marker)) goto cleanup;
urldelim = "&";
}
- if (max_keys) {
+ // if (max_keys) {
if (!list_build_url_component(&uri, urldelim, "max-keys", "1024")) goto cleanup;
urldelim = "&";
- }
+ // }
/* and perform the request on that URI */
result = perform_request(hdl, resource, uri, "GET", NULL,
|