diff options
Diffstat (limited to 'Userland/Services/WebContent/main.cpp')
-rw-r--r-- | Userland/Services/WebContent/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WebContent/main.cpp b/Userland/Services/WebContent/main.cpp index 4f1677001d..aa37ad0cf8 100644 --- a/Userland/Services/WebContent/main.cpp +++ b/Userland/Services/WebContent/main.cpp @@ -20,7 +20,7 @@ int main(int, char**) perror("unveil"); return 1; } - if (unveil("/tmp/portal/protocol", "rw") < 0) { + if (unveil("/tmp/portal/request", "rw") < 0) { perror("unveil"); return 1; } |