Commit 7313501e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

fixed the Curl_cookie_add() invoke to not assume a space after the colon

parent d8b2c819
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -589,7 +589,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
          }
          else if(data->cookies &&
                  strnequal("Set-Cookie:", k->p, 11)) {
            Curl_cookie_add(data->cookies, TRUE, k->p+12, conn->name);
            Curl_cookie_add(data->cookies, TRUE, k->p+11, conn->name);
          }
          else if(strnequal("Last-Modified:", k->p,
                            strlen("Last-Modified:")) &&