From a78534794ee3a9d80da096ac95051cce19a116fd Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Mon, 24 Aug 2015 11:29:22 +0200
Subject: [PATCH] ntlm: mark deliberate switch case fall-through

Coverity CID 1317367, "Missing break in switch"
---
 lib/curl_ntlm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/curl_ntlm.c b/lib/curl_ntlm.c
index f9ddf506d0..53d89d0e25 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;
-- 
GitLab