Skip to content

Commit

Permalink
fuse: fix definition of CAP_POSIX_ACL, CAP_HANDLE_KILLPRIV
Browse files Browse the repository at this point in the history
Change-Id: Ide5633719004b4190173daf0369c90bc6b91978b
  • Loading branch information
hanwen committed Apr 12, 2021
1 parent de56337 commit 7b2174e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuse/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ const (
CAP_WRITEBACK_CACHE = (1 << 16)
CAP_NO_OPEN_SUPPORT = (1 << 17)
CAP_PARALLEL_DIROPS = (1 << 18)
CAP_HANDLE_KILLPRIV = (1 << 19)
CAP_POSIX_ACL = (1 << 20)
CAP_POSIX_ACL = (1 << 19)
CAP_HANDLE_KILLPRIV = (1 << 20)
CAP_ABORT_ERROR = (1 << 21)
CAP_MAX_PAGES = (1 << 22)
CAP_CACHE_SYMLINKS = (1 << 23)
Expand Down

0 comments on commit 7b2174e

Please sign in to comment.