sendf.c: Fixed compilation warning from f2d234a4dd

sendf.c:450:81: warning: Longer than 79 columns
This commit is contained in:
Steve Holme 2013-12-27 12:08:04 +00:00
parent f2d234a4dd
commit c9dd4022f4
1 changed files with 3 additions and 3 deletions

View File

@ -446,9 +446,9 @@ CURLcode Curl_client_write(struct connectdata *conn,
if(CURL_WRITEFUNC_PAUSE == wrote) {
if(conn->handler->flags & PROTOPT_NONETWORK) {
/* protocols that work without network cannot be paused. This is
actually only FILE:// just now, and it can't pause since the transfer
isn't done using the "normal" procedure. */
/* Protocols that work without network cannot be paused. This is
actually only FILE:// just now, and it can't pause since the
transfer isn't done using the "normal" procedure. */
failf(data, "Write callback asked for PAUSE when not supported!");
return CURLE_WRITE_ERROR;
}