very minor indent change

This commit is contained in:
Daniel Stenberg 2007-01-23 22:13:05 +00:00
parent f68323da7d
commit 9e1aef7183
1 changed files with 3 additions and 3 deletions

View File

@ -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;