]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
make check-spaces fix
authorCristian Toader <cristian.matei.toader@gmail.com>
Mon, 26 Aug 2013 18:28:30 +0000 (21:28 +0300)
committerCristian Toader <cristian.matei.toader@gmail.com>
Mon, 26 Aug 2013 18:28:30 +0000 (21:28 +0300)
src/common/sandbox.c

index 79a8930156ce2bc205fc9260f6af06d2bd5a9084..50d6f99b9f54024cc8f6b596a57ef4fd639647d3 100644 (file)
@@ -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;
   }