aboutsummaryrefslogtreecommitdiff
path: root/lib/ssh.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-06-14 13:32:05 +0200
committerYang Tse <yangsita@gmail.com>2012-06-14 13:32:05 +0200
commit6085ca2aeddb38e4d5f24c47bd98111b236cf384 (patch)
tree7b4577a279969ef44ed811738ef80723367ca508 /lib/ssh.c
parenta8259945c4086445022b658f023bc712d1fc9c9d (diff)
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/ssh.c')
-rw-r--r--lib/ssh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh.c b/lib/ssh.c
index a1abc5b08..4c0d48f43 100644
--- a/lib/ssh.c
+++ b/lib/ssh.c
@@ -2540,7 +2540,7 @@ static CURLcode ssh_easy_statemach(struct connectdata *conn,
left = Curl_timeleft(data, NULL, duringconnect);
if(left < 0) {
- failf(data, "Operation timed out\n");
+ failf(data, "Operation timed out");
return CURLE_OPERATION_TIMEDOUT;
}