make check-spaces fix

This commit is contained in:
Cristian Toader 2013-08-26 21:28:30 +03:00
parent 148c6dc473
commit b121ca581d

View file

@ -185,14 +185,14 @@ sb_accept4(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
#ifdef __i386__ #ifdef __i386__
rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketcall), 1, 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) { if (rc) {
return rc; return rc;
} }
#endif #endif
rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(accept4), 1, 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) { if (rc) {
return rc; return rc;
} }