mirror of
https://github.com/curl/curl.git
synced 2026-08-25 05:43:32 +03:00
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:
parent
634760cbdc
commit
66b8f48a88
1 changed files with 1 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue