diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-12-02 17:08:37 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-12-02 17:08:37 +0000 |
commit | 15360e5e51aabb142cb71b130ae6a24ff2ba86dd (patch) | |
tree | fd0fdb9c871a7ab49dc38f1ac24c0b604ab26514 | |
parent | e587a56fc0e3d643b58e8090163a5ecd7516fa35 (diff) |
prevent an initial "(nil)" to get sent in the initial request when doing
CONNECT to a proxy with digest
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 1277fa21d..c397438c4 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1068,7 +1068,7 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn, "%s" "\r\n", hostname, remote_port, - conn->bits.proxy_user_passwd? + conn->allocptr.proxyuserpwd? conn->allocptr.proxyuserpwd:"", data->set.useragent?conn->allocptr.uagent:"" ); |