summaryrefslogtreecommitdiff
path: root/Userland/Services/LoginServer
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-10-14 21:56:07 +0300
committerAndrew Kaster <andrewdkaster@gmail.com>2022-10-25 15:33:34 -0600
commit35c98a031a17a81ab11060b1856ecd385ce7f7bc (patch)
treec8d9514c91b4ec61dfce000a4f8ba3d662e4a118 /Userland/Services/LoginServer
parentb579d9518cbb0671d7efc919e00c08c4424e4a91 (diff)
downloadserenity-35c98a031a17a81ab11060b1856ecd385ce7f7bc.zip
Services: Use new global variables at /sys/kernel/ directory
Diffstat (limited to 'Userland/Services/LoginServer')
-rw-r--r--Userland/Services/LoginServer/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/LoginServer/main.cpp b/Userland/Services/LoginServer/main.cpp
index 8ff9647ee9..4481b201ba 100644
--- a/Userland/Services/LoginServer/main.cpp
+++ b/Userland/Services/LoginServer/main.cpp
@@ -70,7 +70,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::unveil("/etc/shadow", "r"));
TRY(Core::System::unveil("/etc/group", "r"));
TRY(Core::System::unveil("/bin/SystemServer", "x"));
- TRY(Core::System::unveil("/proc/all", "r"));
+ TRY(Core::System::unveil("/sys/kernel/processes", "r"));
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil(nullptr, nullptr));