aboutsummaryrefslogtreecommitdiff
path: root/lib/http_negotiate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/http_negotiate.c')
-rw-r--r--lib/http_negotiate.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/http_negotiate.c b/lib/http_negotiate.c
index eb5bd92d1..bdfeefa0a 100644
--- a/lib/http_negotiate.c
+++ b/lib/http_negotiate.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
@@ -290,7 +290,8 @@ CURLcode Curl_output_negotiate(struct connectdata *conn)
}
}
#endif
- len = Curl_base64_encode(neg_ctx->output_token.value,
+ len = Curl_base64_encode(conn->data,
+ neg_ctx->output_token.value,
neg_ctx->output_token.length,
&encoded);