minor indent fix

This commit is contained in:
Daniel Stenberg 2006-12-21 15:47:19 +00:00
parent 1beb7de7e0
commit cb4a5f5a2b
1 changed files with 5 additions and 5 deletions

View File

@ -531,11 +531,11 @@ CURLcode Curl_scp_do(struct connectdata *conn, bool *done)
* same name as the last directory in the path.
*/
scp->ssh_channel = libssh2_scp_send_ex(scp->ssh_session, scp->path,
LIBSSH2_SFTP_S_IRUSR|
LIBSSH2_SFTP_S_IWUSR|
LIBSSH2_SFTP_S_IRGRP|
LIBSSH2_SFTP_S_IROTH,
conn->data->set.infilesize, 0, 0);
LIBSSH2_SFTP_S_IRUSR|
LIBSSH2_SFTP_S_IWUSR|
LIBSSH2_SFTP_S_IRGRP|
LIBSSH2_SFTP_S_IROTH,
conn->data->set.infilesize, 0, 0);
if (!scp->ssh_channel)
return CURLE_FAILED_INIT;