summaryrefslogtreecommitdiff
path: root/inc/util.h
diff options
context:
space:
mode:
authorBryan Ischo <bryan@ischo.com>2008-10-28 09:41:27 +0000
committerBryan Ischo <bryan@ischo.com>2008-10-28 09:41:27 +0000
commita5a1c54b7c982978dd8e4cdb3745841f4fef4a34 (patch)
treeaabf28b9abb7b76eed4b5510466159bf9ffbd890 /inc/util.h
parent742299fd401378b3ba3c7547e002d4f881201ae4 (diff)
downloadceph-libs3-a5a1c54b7c982978dd8e4cdb3745841f4fef4a34.tar.gz
* Implemented Authenticated Query String support
* Implemented Server Access Logging support * Added "Log Delivery" S3 Group to support Server Access Logging * Fixed some minor compiler warnings, due to red-herring signedness issues
Diffstat (limited to 'inc/util.h')
-rw-r--r--inc/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/util.h b/inc/util.h
index bcd10f3..0ed580e 100644
--- a/inc/util.h
+++ b/inc/util.h
@@ -73,7 +73,7 @@ uint64_t parseUnsignedInt(const char *str);
// base64 encode bytes. The output buffer must have at least
// ((4 * (inLen + 1)) / 3) bytes in it. Returns the number of bytes written
// to [out].
-int base64Encode(const unsigned char *in, int inLen, unsigned char *out);
+int base64Encode(const unsigned char *in, int inLen, char *out);
// Compute HMAC-SHA-1 with key [key] and message [message], storing result
// in [hmac]