diff options
author | Anton Yabchinskiy <arnx@github.com> | 2012-07-21 14:40:25 +0400 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-07-21 22:21:17 +0200 |
commit | 2c7cfd2926edda7f2a3ea3aeb8b91a6923b765fd (patch) | |
tree | 84fccd0d7cd8ac96acc1f3225f6e0d3924be65a6 /lib/http_digest.c | |
parent | c66f6e60fc0d903cd4951d62c9b614ee914e3a56 (diff) | |
download | curl-2c7cfd2926edda7f2a3ea3aeb8b91a6923b765fd.tar.gz |
Client's "qop" value should not be quoted (RFC2617, section 3.2.2).
Diffstat (limited to 'lib/http_digest.c')
-rw-r--r-- | lib/http_digest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_digest.c b/lib/http_digest.c index 45df5fc4d..112d88596 100644 --- a/lib/http_digest.c +++ b/lib/http_digest.c @@ -477,7 +477,7 @@ CURLcode Curl_output_digest(struct connectdata *conn, "uri=\"%s\", " "cnonce=\"%s\", " "nc=%08x, " - "qop=\"%s\", " + "qop=%s, " "response=\"%s\"", proxy?"Proxy-":"", userp, |