aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorCristian Toader <cristian.matei.toader@gmail.com>2013-08-26 21:28:30 +0300
committerCristian Toader <cristian.matei.toader@gmail.com>2013-08-26 21:28:30 +0300
commitb121ca581d8a2390f6aa61f6537a1884cd268c44 (patch)
tree6e65212dd420d91bd5159212adffe630e2e84de4 /src/common
parent148c6dc47348bccfd304a6ee3cd898663eef8841 (diff)
downloadtor-b121ca581d8a2390f6aa61f6537a1884cd268c44.tar.gz
tor-b121ca581d8a2390f6aa61f6537a1884cd268c44.zip
make check-spaces fix
Diffstat (limited to 'src/common')
-rw-r--r--src/common/sandbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c
index 79a8930156..50d6f99b9f 100644
--- a/src/common/sandbox.c
+++ b/src/common/sandbox.c
@@ -185,14 +185,14 @@ sb_accept4(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
#ifdef __i386__
rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketcall), 1,
- SCMP_CMP(0, SCMP_CMP_EQ, 18));
+ SCMP_CMP(0, SCMP_CMP_EQ, 18));
if (rc) {
return rc;
}
#endif
rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(accept4), 1,
- SCMP_CMP(3, SCMP_CMP_EQ, SOCK_CLOEXEC));
+ SCMP_CMP(3, SCMP_CMP_EQ, SOCK_CLOEXEC));
if (rc) {
return rc;
}