aboutsummaryrefslogtreecommitdiff
path: root/lib/ldap.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-01-03 23:04:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-01-03 23:04:38 +0000
commit359d5009089b8b9450ab54825c08448f9e51ed64 (patch)
tree644917edd780dfbfbeb77a911c58cf9d3140ed1c /lib/ldap.c
parentcb42855445f7cf772c9611fbf05f4a6a4ccaccdd (diff)
- David McCreedy made changes to allow base64 encoding/decoding to work on
non-ASCII platforms.
Diffstat (limited to 'lib/ldap.c')
-rw-r--r--lib/ldap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/ldap.c b/lib/ldap.c
index 53c772209..3e1144d4f 100644
--- a/lib/ldap.c
+++ b/lib/ldap.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -402,7 +402,9 @@ CURLcode Curl_ldap(struct connectdata *conn, bool *done)
(char *)attribute +
(strlen((char *)attribute) - 7)) == 0)) {
/* Binary attribute, encode to base64. */
- val_b64_sz = Curl_base64_encode(vals[i]->bv_val, vals[i]->bv_len,
+ val_b64_sz = Curl_base64_encode(conn->data,
+ vals[i]->bv_val,
+ vals[i]->bv_len,
&val_b64);
if (val_b64_sz > 0) {
Curl_client_write(conn, CLIENTWRITE_BODY, val_b64, val_b64_sz);