summaryrefslogtreecommitdiff
path: root/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'base64.h')
-rw-r--r--base64.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base64.h b/base64.h
index 8533af1..3c735bc 100644
--- a/base64.h
+++ b/base64.h
@@ -1,11 +1,11 @@
#include <gnutls/gnutls.h>
-static inline void base64_decode(unsigned char *host, char **decoded_host)
+static inline void base64_decode(const char *host, char **decoded_host)
{
gnutls_datum_t result;
gnutls_base64_decode2(&(gnutls_datum_t){
- host,
- strlen((const char *)host)
+ (unsigned char *)host,
+ strlen(host)
}, &result);
*decoded_host = malloc(result.size + 1);
strlcpy(*decoded_host, (const char *)result.data, result.size + 1);