summaryrefslogtreecommitdiff
path: root/lib/krb4.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-01-15 23:19:02 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-01-15 23:19:02 +0000
commited6466d17603aa39bb4b1685544747f4c64ec7b0 (patch)
tree61beb3ad96cb8dea767ca60b171f84b25fd55d5d /lib/krb4.c
parent991505e077f4ecdbd0b1d0f42be0c9b548dc743d (diff)
downloadcurl-ed6466d17603aa39bb4b1685544747f4c64ec7b0.tar.gz
Calls to Curl_failf() are not supposed to provide a trailing newline as the
function itself adds that. Fixed on 50 or something strings!
Diffstat (limited to 'lib/krb4.c')
-rw-r--r--lib/krb4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/krb4.c b/lib/krb4.c
index 3a8f01ae8..4ea21e2cb 100644
--- a/lib/krb4.c
+++ b/lib/krb4.c
@@ -7,7 +7,7 @@
*
* Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden).
- * Copyright (c) 2004 - 2007 Daniel Stenberg
+ * Copyright (c) 2004 - 2008 Daniel Stenberg
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -362,7 +362,7 @@ CURLcode Curl_krb_kauth(struct connectdata *conn)
tmp=0;
}
if(!tmp || !ptr) {
- Curl_failf(conn->data, "Failed to decode base64 in reply.\n");
+ Curl_failf(conn->data, "Failed to decode base64 in reply");
Curl_set_command_prot(conn, save);
return CURLE_FTP_WEIRD_SERVER_REPLY;
}