-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Martin Kröning <martin.kroening@eonerc.rwth-aachen.de>
- Loading branch information
Showing
5 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
diff --git a/src/linux.rs b/src/linux.rs | ||
--- a/src/linux.rs | ||
+++ b/src/linux.rs | ||
@@ -40,7 +40,7 @@ impl<T> ::core::fmt::Debug for __IncompleteArrayField<T> { | ||
} | ||
pub const FUSE_KERNEL_VERSION: u32 = 7; | ||
pub const FUSE_KERNEL_MINOR_VERSION: u32 = 40; | ||
-pub const FUSE_ROOT_ID: u32 = 1; | ||
+pub const FUSE_ROOT_ID: u64 = 1; | ||
pub const FATTR_MODE: u32 = 1; | ||
pub const FATTR_UID: u32 = 2; | ||
pub const FATTR_GID: u32 = 4; | ||
diff --git a/src/macos.rs b/src/macos.rs | ||
--- a/src/macos.rs | ||
+++ b/src/macos.rs | ||
@@ -40,7 +40,7 @@ impl<T> ::core::fmt::Debug for __IncompleteArrayField<T> { | ||
} | ||
pub const FUSE_KERNEL_VERSION: u32 = 7; | ||
pub const FUSE_KERNEL_MINOR_VERSION: u32 = 19; | ||
-pub const FUSE_ROOT_ID: u32 = 1; | ||
+pub const FUSE_ROOT_ID: u64 = 1; | ||
pub const FATTR_MODE: u32 = 1; | ||
pub const FATTR_UID: u32 = 2; | ||
pub const FATTR_GID: u32 = 4; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters