parent
95c65a6246
commit
6ac4046bee
|
|
@ -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)
|
||||
--------------------------
|
||||
|
|
|
|||
3
sshfs.c
3
sshfs.c
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue