aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-01-23 22:13:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-01-23 22:13:05 +0000
commit9e1aef71836ccf60b571e2e8b85d5b0a67f112c4 (patch)
tree663eacc31a10fa74fa2480165dda856dc729aa38
parentf68323da7d24872650af5c8c1823b1f8ae821c1f (diff)
very minor indent change
-rw-r--r--lib/ssh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssh.c b/lib/ssh.c
index 9d277a3d5..9c26dc300 100644
--- a/lib/ssh.c
+++ b/lib/ssh.c
@@ -821,9 +821,9 @@ CURLcode Curl_sftp_do(struct connectdata *conn, bool *done)
* Work on getting the specified file
*/
sftp->sftp_handle =
- libssh2_sftp_open(sftp->sftp_session, sftp->path, LIBSSH2_FXF_READ,
- LIBSSH2_SFTP_S_IRUSR|LIBSSH2_SFTP_S_IWUSR|
- LIBSSH2_SFTP_S_IRGRP|LIBSSH2_SFTP_S_IROTH);
+ libssh2_sftp_open(sftp->sftp_session, sftp->path, LIBSSH2_FXF_READ,
+ LIBSSH2_SFTP_S_IRUSR|LIBSSH2_SFTP_S_IWUSR|
+ LIBSSH2_SFTP_S_IRGRP|LIBSSH2_SFTP_S_IROTH);
if (!sftp->sftp_handle)
return CURLE_SSH;