You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Default values are what a TarEntry created with its constructor will set
15
-
protectedconstTarFileModeDefaultMode=TarFileMode.UserRead|TarFileMode.UserWrite|TarFileMode.GroupRead|TarFileMode.OtherRead;// 644 in octal, internally used as default
16
-
protectedconstTarFileModeDefaultWindowsMode=TarFileMode.UserRead|TarFileMode.UserWrite|TarFileMode.UserExecute|TarFileMode.GroupRead|TarFileMode.GroupWrite|TarFileMode.GroupExecute|TarFileMode.OtherRead|TarFileMode.OtherWrite|TarFileMode.UserExecute;// Creating archives in Windows always sets the mode to 777
15
+
protectedconstUnixFileModeDefaultMode=UnixFileMode.UserRead|UnixFileMode.UserWrite|UnixFileMode.GroupRead|UnixFileMode.OtherRead;// 644 in octal, internally used as default
16
+
protectedconstUnixFileModeDefaultWindowsMode=UnixFileMode.UserRead|UnixFileMode.UserWrite|UnixFileMode.UserExecute|UnixFileMode.GroupRead|UnixFileMode.GroupWrite|UnixFileMode.GroupExecute|UnixFileMode.OtherRead|UnixFileMode.OtherWrite|UnixFileMode.UserExecute;// Creating archives in Windows always sets the mode to 777
17
17
protectedconstintDefaultGid=0;
18
18
protectedconstintDefaultUid=0;
19
19
protectedconstintDefaultDeviceMajor=0;
@@ -36,7 +36,7 @@ public abstract partial class TarTestsBase : FileCleanupTestBase
0 commit comments