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

ntlm: mark deliberate switch case fall-through

Coverity CID 1317367, "Missing break in switch"
parent 110d99c6
No related branches found
No related tags found
No related merge requests found
......@@ -216,7 +216,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy)
/* connection is already authenticated,
* don't send a header in future requests */
ntlm->state = NTLMSTATE_LAST;
/* fall-through */
case NTLMSTATE_LAST:
Curl_safefree(*allocuserpwd);
authp->done = TRUE;
......
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