diff options
Diffstat (limited to 'Userland/Utilities/w.cpp')
-rw-r--r-- | Userland/Utilities/w.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/w.cpp b/Userland/Utilities/w.cpp index 31c52667c3..2d4ed240f1 100644 --- a/Userland/Utilities/w.cpp +++ b/Userland/Utilities/w.cpp @@ -20,6 +20,7 @@ ErrorOr<int> serenity_main(Main::Arguments) TRY(Core::System::pledge("stdio rpath")); TRY(Core::System::unveil("/dev", "r")); TRY(Core::System::unveil("/etc/passwd", "r")); + TRY(Core::System::unveil("/etc/timezone", "r")); TRY(Core::System::unveil("/var/run/utmp", "r")); TRY(Core::System::unveil("/proc", "r")); TRY(Core::System::unveil(nullptr, nullptr)); |