diff options
Diffstat (limited to 'libssh/base64.c')
-rw-r--r-- | libssh/base64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libssh/base64.c b/libssh/base64.c index 0ba548e..f4d64fb 100644 --- a/libssh/base64.c +++ b/libssh/base64.c @@ -55,8 +55,8 @@ static int get_equals(char *string); * @returns A buffer containing the decoded string, NULL if something went * wrong (e.g. incorrect char). */ -BUFFER *base64_to_bin(const char *source) { - BUFFER *buffer = NULL; +ssh_buffer base64_to_bin(const char *source) { + ssh_buffer buffer = NULL; unsigned char block[3]; char *base64; char *ptr; |