aboutsummaryrefslogtreecommitdiff
path: root/lib/dict.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-12-11 13:13:01 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-12-11 13:13:01 +0000
commite1922617883d5a70a282ed0e9e756a27eeed6bba (patch)
tree683c013a51c154a488189b6547fe783aba5c3e29 /lib/dict.c
parentc63ca99c1c99cff46b1184356d2639dddf3551c6 (diff)
failf() calls should not have newlines in the message string!
Diffstat (limited to 'lib/dict.c')
-rw-r--r--lib/dict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dict.c b/lib/dict.c
index bbb5fe146..79b5a7786 100644
--- a/lib/dict.c
+++ b/lib/dict.c
@@ -121,7 +121,7 @@ CURLcode Curl_dict(struct connectdata *conn)
}
if ((word == NULL) || (*word == (char)0)) {
- failf(data, "lookup word is missing\n");
+ failf(data, "lookup word is missing");
}
if ((database == NULL) || (*database == (char)0)) {
database = (char *)"!";
@@ -174,7 +174,7 @@ CURLcode Curl_dict(struct connectdata *conn)
}
if ((word == NULL) || (*word == (char)0)) {
- failf(data, "lookup word is missing\n");
+ failf(data, "lookup word is missing");
}
if ((database == NULL) || (*database == (char)0)) {
database = (char *)"!";