Commit 2dd1518d authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

support sending off cookies without contents

parent 168703b7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: ");
          }