summaryrefslogtreecommitdiff
path: root/Base/usr
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-04-29 21:40:59 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-29 22:16:18 +0200
commitdef1f1444aeee2caf6d47d0eb96a18ffc476c3f9 (patch)
tree2cd5b10136486bda1ec35b161100a081337ef514 /Base/usr
parentb88b19272e2f1876ebe0dac0601f087a62d099c0 (diff)
downloadserenity-def1f1444aeee2caf6d47d0eb96a18ffc476c3f9.zip
WindowServer: Move configuration file to /etc/WindowServer.ini
This was in the /etc/WindowServer/ directory which had nothing else in it, so let's just get rid of the directory and move this up one step.
Diffstat (limited to 'Base/usr')
-rw-r--r--Base/usr/share/man/man2/unveil.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/usr/share/man/man2/unveil.md b/Base/usr/share/man/man2/unveil.md
index ba8c6574ba..9cdbc60adb 100644
--- a/Base/usr/share/man/man2/unveil.md
+++ b/Base/usr/share/man/man2/unveil.md
@@ -74,7 +74,7 @@ The `unveil()` system call was first introduced by OpenBSD.
unveil("/res", "r");
// Allow the process to read, write, and create the config file:
-unveil("/etc/WindowServer/WindowServer.ini", "rwc");
+unveil("/etc/WindowServer.ini", "rwc");
// Allow the process to execute Calendar:
unveil("/bin/Calendar", "x");