summaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-04-16 11:55:05 +0200
committerDaniel Stenberg <daniel@haxx.se>2022-04-16 11:55:05 +0200
commit6968fb9d54dc3a1aaa1b16088f038eaf5dd8b2d7 (patch)
tree3127adabb70c4c874a84ee37162b356ea44026ed /lib/sendf.c
parent36e09dc302d0bc70b1a314181cd6b5756d74217d (diff)
downloadcurl-6968fb9d54dc3a1aaa1b16088f038eaf5dd8b2d7.tar.gz
lib: remove exclamation marks
... from infof() and failf() calls. Make them less attention seeking. Closes #8713
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index 92cb62a86..d7d4d8abd 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -566,7 +566,7 @@ static CURLcode chop_write(struct Curl_easy *data,
/* 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!");
+ failf(data, "Write callback asked for PAUSE when not supported");
return CURLE_WRITE_ERROR;
}
return pausewrite(data, type, ptr, len);