mirror of
https://github.com/curl/curl.git
synced 2026-04-16 12:31:41 +03:00
oops, a bad strtok() was fixed by Luca
This commit is contained in:
parent
15f9a93c25
commit
1756499b11
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ CURLdigest Curl_input_digest(struct connectdata *conn,
|
|||
else if (strequal(token, "auth-int")) {
|
||||
foundAuthInt = TRUE;
|
||||
}
|
||||
token = strtok (NULL, ",");
|
||||
token = strtok_r(NULL, ",", &tok_buf);
|
||||
}
|
||||
free(tmp);
|
||||
/*select only auth o auth-int. Otherwise, ignore*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue