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/krb4.c | |
parent | c63ca99c1c99cff46b1184356d2639dddf3551c6 (diff) | |
download | curl-e1922617883d5a70a282ed0e9e756a27eeed6bba.tar.gz |
failf() calls should not have newlines in the message string!
Diffstat (limited to 'lib/krb4.c')
-rw-r--r-- | lib/krb4.c | 2 |
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; } |