Support O_APPEND.

Fixes: #76.
This commit is contained in:
Nikolaus Rath 2017-08-06 10:55:53 +02:00
parent 95c65a6246
commit 6ac4046bee
2 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,7 @@ Unreleased Changes
* Truly disable the writeback cache, instead of just adjusting the
default and printing a warning when explicitly enabled.
* SSHFS now supports O_APPEND.
Release 3.1.0 (2017-08-04)
--------------------------

View File

@ -2518,6 +2518,9 @@ static int sshfs_open_common(const char *path, mode_t mode,
if (fi->flags & O_TRUNC)
pflags |= SSH_FXF_TRUNC;
if (fi->flags & O_APPEND)
pflags |= SSH_FXF_APPEND;
sf = g_new0(struct sshfs_file, 1);
list_init(&sf->write_reqs);
pthread_cond_init(&sf->write_finished, NULL);