When saving a cookie jar, set field 1 (counted from 0) properly to TRUE if the

domain starts with a dot.
This commit is contained in:
Daniel Stenberg 2002-02-26 13:18:08 +00:00
parent 634760cbdc
commit 66b8f48a88
1 changed files with 1 additions and 0 deletions

View File

@ -149,6 +149,7 @@ Curl_cookie_add(struct CookieInfo *c,
}
else if(strequal("domain", name)) {
co->domain=strdup(what);
co->field1= (what[0]=='.')?2:1;
}
else if(strequal("version", name)) {
co->version=strdup(what);