mirror of
https://github.com/curl/curl.git
synced 2026-07-26 04:07:17 +03:00
ssh-libssh: do not specify O_APPEND when not in append mode
Specifying O_APPEND in conjunction with O_TRUNC and O_CREAT does not make much sense. And this combination of flags is not accepted by all SFTP servers (at least not Apache SSHD). Fixes #4147 Closes #4148
This commit is contained in:
parent
a55edcea65
commit
6261749510
1 changed files with 1 additions and 1 deletions
|
|
@ -1119,7 +1119,7 @@ static CURLcode myssh_statemach_act(struct connectdata *conn, bool *block)
|
|||
flags = O_WRONLY|O_APPEND;
|
||||
else
|
||||
/* Clear file before writing (normal behaviour) */
|
||||
flags = O_WRONLY|O_APPEND|O_CREAT|O_TRUNC;
|
||||
flags = O_WRONLY|O_CREAT|O_TRUNC;
|
||||
|
||||
if(sshc->sftp_file)
|
||||
sftp_close(sshc->sftp_file);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue