aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 277e90266..a59ed8ac1 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -1030,7 +1030,7 @@ CURLcode Curl_http(struct connectdata *conn)
struct Cookie *store=co;
/* now loop through all cookies that matched */
while(co) {
- if(co->value && strlen(co->value)) {
+ if(co->value) {
if(0 == count) {
add_bufferf(req_buffer, "Cookie: ");
}