summaryrefslogtreecommitdiff
path: root/lib/krb4.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/krb4.c
parentc63ca99c1c99cff46b1184356d2639dddf3551c6 (diff)
downloadcurl-e1922617883d5a70a282ed0e9e756a27eeed6bba.tar.gz
failf() calls should not have newlines in the message string!
Diffstat (limited to 'lib/krb4.c')
-rw-r--r--lib/krb4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/krb4.c b/lib/krb4.c
index 96cc4520d..9b752afa1 100644
--- a/lib/krb4.c
+++ b/lib/krb4.c
@@ -374,7 +374,7 @@ void Curl_krb_kauth(struct connectdata *conn)
memset(schedule, 0, sizeof(schedule));
memset(passwd, 0, sizeof(passwd));
if(Curl_base64_encode(tktcopy.dat, tktcopy.length, &p) < 0) {
- failf(conn->data, "Out of memory base64-encoding.\n");
+ failf(conn->data, "Out of memory base64-encoding.");
Curl_set_command_prot(conn, save);
return;
}