diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2008-01-15 23:19:02 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2008-01-15 23:19:02 +0000 | 
| commit | ed6466d17603aa39bb4b1685544747f4c64ec7b0 (patch) | |
| tree | 61beb3ad96cb8dea767ca60b171f84b25fd55d5d /lib/ssh.c | |
| parent | 991505e077f4ecdbd0b1d0f42be0c9b548dc743d (diff) | |
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/ssh.c')
| -rw-r--r-- | lib/ssh.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -5,7 +5,7 @@   *                            | (__| |_| |  _ <| |___   *                             \___|\___/|_| \_\_____|   * - * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.   *   * This software is licensed as described in the file COPYING, which   * you should have received as part of this distribution. The terms @@ -733,7 +733,7 @@ static CURLcode ssh_statemach_act(struct connectdata *conn)          break;        }        else { -        failf(data, "Failure initialising sftp session\n"); +        failf(data, "Failure initialising sftp session");          state(conn, SSH_SESSION_FREE);          sshc->actualcode = CURLE_FAILED_INIT;          break; | 
