summaryrefslogtreecommitdiff
path: root/lib/pop3.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/pop3.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/pop3.c')
-rw-r--r--lib/pop3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index 3e0d5a4a0..2c1b06c07 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -571,7 +571,7 @@ static CURLcode pop3_perform_authentication(struct Curl_easy *data,
result = pop3_perform_user(data, conn);
else {
/* Other mechanisms not supported */
- infof(data, "No known authentication mechanisms supported!");
+ infof(data, "No known authentication mechanisms supported");
result = CURLE_LOGIN_DENIED;
}
}