diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-08-24 11:29:22 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-08-24 11:29:22 +0200 |
commit | a78534794ee3a9d80da096ac95051cce19a116fd (patch) | |
tree | 9ca68ef10bfc4d34fbe0a5508a34fead175b7e81 | |
parent | 110d99c661c6a2dd4e7ec87c3aa7b2b649e5fa79 (diff) |
ntlm: mark deliberate switch case fall-through
Coverity CID 1317367, "Missing break in switch"
-rw-r--r-- | lib/curl_ntlm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_ntlm.c b/lib/curl_ntlm.c index f9ddf506d..53d89d0e2 100644 --- a/lib/curl_ntlm.c +++ b/lib/curl_ntlm.c @@ -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; |