From a4da1fe776b774670948f00898d370da614960f5 Mon Sep 17 00:00:00 2001 From: Adriaan de Jong Date: Thu, 30 Jun 2011 16:34:11 +0200 Subject: Modified base64 code in preparation for PolarSSL merge - Renamed base64_decode and base64_encode to openvpn_* - Changed the contributor's name to UTF-8 Signed-off-by: Adriaan de Jong Acked-by: James Yonan Signed-off-by: David Sommerseth --- proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proxy.c') diff --git a/proxy.c b/proxy.c index 86f3d7d..5e74af2 100644 --- a/proxy.c +++ b/proxy.c @@ -192,7 +192,7 @@ make_base64_string2 (const uint8_t *str, int src_len, struct gc_arena *gc) { uint8_t *ret = NULL; char *b64out = NULL; - ASSERT (base64_encode ((const void *)str, src_len, &b64out) >= 0); + ASSERT (openvpn_base64_encode ((const void *)str, src_len, &b64out) >= 0); ret = (uint8_t *) string_alloc (b64out, gc); free (b64out); return ret; -- cgit