aboutsummaryrefslogtreecommitdiff
path: root/libssh/base64.c
diff options
context:
space:
mode:
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 5f4f4405..262c97ca 100644
--- a/libssh/base64.c
+++ b/libssh/base64.c
@@ -77,7 +77,7 @@ ssh_buffer base64_to_bin(const char *source) {
return NULL;
}
- buffer = buffer_new();
+ buffer = ssh_buffer_new();
if (buffer == NULL) {
SAFE_FREE(base64);
return NULL;
@@ -162,7 +162,7 @@ ssh_buffer base64_to_bin(const char *source) {
error:
SAFE_FREE(base64);
- buffer_free(buffer);
+ ssh_buffer_free(buffer);
return NULL;
}