From 838d1c38a12599ecb01707fed559ad16cba63e1b Mon Sep 17 00:00:00 2001 From: Alex Muscar Date: Mon, 16 Mar 2020 11:05:48 +0000 Subject: [PATCH] SystemMenu: Remove the unveil() call for /etc/PowerOptions.ini The file is not used. --- Applications/SystemMenu/main.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Applications/SystemMenu/main.cpp b/Applications/SystemMenu/main.cpp index 9d4eae6b814..a2321427b93 100644 --- a/Applications/SystemMenu/main.cpp +++ b/Applications/SystemMenu/main.cpp @@ -90,11 +90,6 @@ int main(int argc, char** argv) return 1; } - if (unveil("/etc/PowerOptions.ini", "r")) { - perror("unveil"); - return 1; - } - unveil(nullptr, nullptr); return app.exec();