aboutsummaryrefslogtreecommitdiff
path: root/libssh/base64.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-07-24 21:56:11 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2009-07-24 21:56:11 +0200
commit91d0660cc3b0f72b690678862bb21cbe0328a186 (patch)
tree023c86ea3cbbcfa9a86d8fe887ff03730ff86571 /libssh/base64.c
parentfb5769b4be79943b7c53ebc0d5adb86ed77b9925 (diff)
downloadlibssh-91d0660cc3b0f72b690678862bb21cbe0328a186.tar.gz
libssh-91d0660cc3b0f72b690678862bb21cbe0328a186.tar.xz
libssh-91d0660cc3b0f72b690678862bb21cbe0328a186.zip
Changed all occurences of BUFFER * to ssh_buffer
Diffstat (limited to 'libssh/base64.c')
-rw-r--r--libssh/base64.c4
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;