Skip to content

Commit

Permalink
fuse: fsop_nocgo_windows: fix O_EXCL, O_TRUNC
Browse files Browse the repository at this point in the history
See discussion at #66
  • Loading branch information
billziss-gh committed Apr 19, 2022
1 parent f0ad031 commit f12b470
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuse/fsop_nocgo_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ const (
O_RDWR = 0x0002
O_APPEND = 0x0008
O_CREAT = 0x0100
O_EXCL = 0x0200
O_TRUNC = 0x0400
O_TRUNC = 0x0200
O_EXCL = 0x0400
O_ACCMODE = O_RDONLY | O_WRONLY | O_RDWR
)

Expand Down

0 comments on commit f12b470

Please sign in to comment.