From 2c7cfd2926edda7f2a3ea3aeb8b91a6923b765fd Mon Sep 17 00:00:00 2001
From: Anton Yabchinskiy <arnx@github.com>
Date: Sat, 21 Jul 2012 14:40:25 +0400
Subject: [PATCH] Client's "qop" value should not be quoted (RFC2617, section
 3.2.2).

---
 lib/http_digest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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,
-- 
2.40.0