diff options
author | Omar Polo <op@omarpolo.com> | 2021-10-18 10:05:55 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-10-18 10:05:55 +0000 |
commit | 4842c72d9f3f45478cb641e15a3272e541fb8a18 (patch) | |
tree | 1a1b840362a8e78f6a71c67bce0d7157e0848cb5 /sandbox.c | |
parent | f8bcc13822154d8558246c9f994cf43c413a5714 (diff) |
fmt
Diffstat (limited to 'sandbox.c')
-rw-r--r-- | sandbox.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,7 +29,7 @@ sandbox_server_process(void) void sandbox_executor_process(void) { - log_notice(NULL, "Sandbox disabled! " + log_notice(NULL, "Sandbox disabled! " "Please report issues upstream instead of disabling the sandbox."); } @@ -322,7 +322,7 @@ static struct sock_filter filter[] = { #endif #ifdef __NR_ioctl /* allow ioctl on fd 1, glibc doing stuff? */ - SC_ALLOW_ARG(__NR_ioctl, 0, 1), + SC_ALLOW_ARG(__NR_ioctl, 0, 1), /* allow FIONREAD needed by libevent */ SC_ALLOW_ARG(__NR_ioctl, 1, FIONREAD), #endif @@ -645,7 +645,7 @@ sandbox_executor_process(void) } for (i = 0; i < FCGI_MAX; i++) { - f = &fcgi[i]; + f = &fcgi[i]; if (f->path != NULL) { if (unveil(f->path, "rw") == -1) fatal("unveil %s", f->path); |