Skip to content
Snippets Groups Projects
Commit 1756499b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

oops, a bad strtok() was fixed by Luca

parent 15f9a93c
No related branches found
No related tags found
No related merge requests found
......@@ -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*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment