summaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-12-27 12:08:04 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-12-27 12:08:37 +0000
commitc9dd4022f4629d33fd2094f8cfd9cf112b4eaea7 (patch)
treeb9db03e9601d641be542ccc1b320ff8e6bd57bb6 /lib/sendf.c
parentf2d234a4dd9bcc5760d92697546fea14b5897a0e (diff)
downloadgnurl-c9dd4022f4629d33fd2094f8cfd9cf112b4eaea7.tar.gz
gnurl-c9dd4022f4629d33fd2094f8cfd9cf112b4eaea7.tar.bz2
gnurl-c9dd4022f4629d33fd2094f8cfd9cf112b4eaea7.zip
sendf.c: Fixed compilation warning from f2d234a4dd9bcc
sendf.c:450:81: warning: Longer than 79 columns
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index d508dfd3e..1c30c0bc4 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -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;
}