diff options
author | Stef Walter <stef@memberwebs.com> | 2004-04-26 17:45:47 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-04-26 17:45:47 +0000 |
commit | 627c573af25b602ac64c36b01c8163c592cbb494 (patch) | |
tree | 935f8fd15e6c47ce0a47164b4476583dc3e44c27 /daemon/httpauthd.h | |
parent | 7ede8b330f777a0ff5c960eaecc1850b84289620 (diff) |
Debugging Fixes
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); |