added proper breaks in the switch()

This commit is contained in:
Daniel Stenberg 2002-01-07 15:24:52 +00:00
parent deb2911c0e
commit c69c0c0446

View File

@ -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 {