aboutsummaryrefslogtreecommitdiff
path: root/sandbox.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-10-18 10:05:55 +0000
committerOmar Polo <op@omarpolo.com>2021-10-18 10:05:55 +0000
commit4842c72d9f3f45478cb641e15a3272e541fb8a18 (patch)
tree1a1b840362a8e78f6a71c67bce0d7157e0848cb5 /sandbox.c
parentf8bcc13822154d8558246c9f994cf43c413a5714 (diff)
fmt
Diffstat (limited to 'sandbox.c')
-rw-r--r--sandbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sandbox.c b/sandbox.c
index 5391f03..8857c4b 100644
--- a/sandbox.c
+++ b/sandbox.c
@@ -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);