From a8a1f439210de9538b196c6bb5470c306379128c Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Wed, 7 Jul 2021 09:46:37 +0000 Subject: style(9)-ify --- sandbox.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'sandbox.c') diff --git a/sandbox.c b/sandbox.c index 7ac56de..6d57b86 100644 --- a/sandbox.c +++ b/sandbox.c @@ -53,8 +53,10 @@ sandbox_server_process(void) void sandbox_executor_process(void) { - /* We cannot capsicum the executor process because it needs - * to fork(2)+execve(2) cgi scripts */ + /* + * We cannot capsicum the executor process because it needs to + * fork(2)+execve(2) cgi scripts + */ return; } @@ -435,18 +437,22 @@ sandbox_server_process(void) void sandbox_executor_process(void) { - /* We cannot use seccomp for the executor process because we + /* + * We cannot use seccomp for the executor process because we * don't know what the child will do. Also, our filter will * be inherited so the child cannot set its own seccomp - * policy. */ + * policy. + */ return; } void sandbox_logger_process(void) { - /* To be honest, here we could use a seccomp policy to only - * allow writev(2) and memory allocations. */ + /* + * To be honest, here we could use a seccomp policy to only + * allow writev(2) and memory allocations. + */ return; } -- cgit v1.2.3