diff options
author | Omar Polo <op@omarpolo.com> | 2023-05-08 10:27:32 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-05-08 10:27:32 +0000 |
commit | 1e0b974519c8228e271b2b6e677c1b8f9a109b6b (patch) | |
tree | de04fa55d4b340cff89e9f8e77dc7b9b6b951e31 /sandbox.c | |
parent | 0b62f4842d7c65b8f64c5f676a0a05333fd7db6f (diff) |
send capsicum/landlock/seccomp hack to Valhalla
Diffstat (limited to 'sandbox.c')
-rw-r--r-- | sandbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ #include <unistd.h> void -sandbox_server_process(int can_open_sockets) +sandbox_server_process(void) { struct vhost *h; struct location *l; @@ -54,7 +54,7 @@ sandbox_logger_process(void) #warning "No sandbox method known for this OS" void -sandbox_server_process(int can_open_sockets) +sandbox_server_process(void) { return; } |