Commit 1756499b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

oops, a bad strtok() was fixed by Luca

parent 15f9a93c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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*/