diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-01-07 15:24:52 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-07 15:24:52 +0000 |
commit | c69c0c0446e442f3f37cb98043e09c5e3728b7c6 (patch) | |
tree | 77fa3148024b1a6d18ba3e7f579ce5aed897c874 /lib | |
parent | deb2911c0e0dc0eeec1d2b72e2e8510f8e1c425f (diff) |
added proper breaks in the switch()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/transfer.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 { |