diff options
-rw-r--r-- | source3/smbd/open.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 82a71c7030..4ea51dd4e9 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2376,10 +2376,10 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn, fsp->oplock_type = NO_OPLOCK; } - if (!(flags2 & O_TRUNC)) { - info = FILE_WAS_OPENED; - } else { + if (flags2 & O_TRUNC) { info = FILE_WAS_OVERWRITTEN; + } else { + info = FILE_WAS_OPENED; } } else { info = FILE_WAS_CREATED; |