From: Daniel Stenberg Date: Mon, 7 Jan 2002 15:24:52 +0000 (+0000) Subject: added proper breaks in the switch() X-Git-Tag: curl-7_9_3-pre1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c69c0c0446e442f3f37cb98043e09c5e3728b7c6;p=curl added proper breaks in the switch() --- diff --git a/lib/transfer.c b/lib/transfer.c index a47fa1c57..582fbc9fe 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 {