diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-12-11 13:13:01 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-12-11 13:13:01 +0000 |
commit | e1922617883d5a70a282ed0e9e756a27eeed6bba (patch) | |
tree | 683c013a51c154a488189b6547fe783aba5c3e29 /lib/dict.c | |
parent | c63ca99c1c99cff46b1184356d2639dddf3551c6 (diff) | |
download | curl-e1922617883d5a70a282ed0e9e756a27eeed6bba.tar.gz |
failf() calls should not have newlines in the message string!
Diffstat (limited to 'lib/dict.c')
-rw-r--r-- | lib/dict.c | 4 |
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 *)"!"; |