diff options
Diffstat (limited to 'daemon/httpauthd.h')
-rw-r--r-- | daemon/httpauthd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/httpauthd.h b/daemon/httpauthd.h index 7f51895..8693310 100644 --- a/daemon/httpauthd.h +++ b/daemon/httpauthd.h @@ -86,13 +86,13 @@ void* ha_bufmemdup(ha_buffer_t* buf, const void* src, size_t bytes); char* ha_bufenc64(ha_buffer_t* buf, const void* src, size_t bytes); /* Decode an array of bytes from base 64 */ -void* ha_bufdec64(ha_buffer_t* buf, const char* src, size_t bytes); +void* ha_bufdec64(ha_buffer_t* buf, const char* src, size_t* bytes); /* Encode an array of bytes in hex */ char* ha_bufenchex(ha_buffer_t* buf, const void* src, size_t bytes); /* Decode an array of bytes in hex */ -void* ha_bufdechex(ha_buffer_t* buf, const char* src, size_t bytes); +void* ha_bufdechex(ha_buffer_t* buf, const char* src, size_t* bytes); |