summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorBryan Ischo <bryan@ischo.com>2008-07-19 03:58:34 +0000
committerBryan Ischo <bryan@ischo.com>2008-07-19 03:58:34 +0000
commit5b2d5978bfea855912ba38e32985cee8c0f35a89 (patch)
treeafa2bd8e9e7779d4051eaeb5292890ab7d93efec /inc
parentcefec7923e72ef487539b285cbd2741b1ca07186 (diff)
downloadceph-libs3-5b2d5978bfea855912ba38e32985cee8c0f35a89.tar.gz
* Fixed some issues that were uncovered when compiling -O3. libcurl issue
with curl_off_t unresolved.
Diffstat (limited to 'inc')
-rw-r--r--inc/request.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/request.h b/inc/request.h
index 7184d64..50ebf56 100644
--- a/inc/request.h
+++ b/inc/request.h
@@ -136,7 +136,7 @@ typedef struct Request
char uri[MAX_URI_SIZE + 1];
// The HTTP response code that S3 sent back for this request
- int httpResponseCode;
+ long httpResponseCode;
// Callback to be made when headers are available. Might not be called.
S3ResponsePropertiesCallback *propertiesCallback;