mirror of
https://github.com/curl/curl.git
synced 2025-02-17 14:59:45 +08:00
oops, a bad strtok() was fixed by Luca
This commit is contained in:
parent
15f9a93c25
commit
1756499b11
@ -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…
Reference in New Issue
Block a user