From c69c0c0446e442f3f37cb98043e09c5e3728b7c6 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Mon, 7 Jan 2002 15:24:52 +0000
Subject: [PATCH] added proper breaks in the switch()

---
 lib/transfer.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/transfer.c b/lib/transfer.c
index a47fa1c579..582fbc9fe1 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -437,8 +437,10 @@ CURLcode Curl_readwrite(struct connectdata *conn,
                  * NOT contain a message-body, and thus is always terminated
                  * by the first empty line after the header fields.  */
                 conn->size=0;
+                break;
               default:
                 /* nothing */
+                break;
               }
             }
             else {
-- 
GitLab