diff options
author | Yang Tse <yangsita@gmail.com> | 2012-06-14 13:32:05 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-06-14 13:32:05 +0200 |
commit | 6085ca2aeddb38e4d5f24c47bd98111b236cf384 (patch) | |
tree | 7b4577a279969ef44ed811738ef80723367ca508 /lib/socks_sspi.c | |
parent | a8259945c4086445022b658f023bc712d1fc9c9d (diff) | |
download | curl-6085ca2aeddb38e4d5f24c47bd98111b236cf384.tar.gz |
Fix bad failf() and info() usage
Calls to failf() are not supposed to provide trailing newline.
Calls to infof() must provide trailing newline.
Fixed 30 or so strings.
Diffstat (limited to 'lib/socks_sspi.c')
-rw-r--r-- | lib/socks_sspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/socks_sspi.c b/lib/socks_sspi.c index 0b86bbf21..61ef2f4a7 100644 --- a/lib/socks_sspi.c +++ b/lib/socks_sspi.c @@ -58,7 +58,7 @@ static int check_sspi_err(struct connectdata *conn, status != SEC_I_COMPLETE_AND_CONTINUE && status != SEC_I_COMPLETE_NEEDED && status != SEC_I_CONTINUE_NEEDED) { - failf(conn->data, "SSPI error: %s failed: %s\n", function, + failf(conn->data, "SSPI error: %s failed: %s", function, Curl_sspi_strerror(conn, status)); return 1; } |