subproc: reorder printing of si->si_syscall
authorRobert Swiecki <robert@swiecki.net>
Sun, 8 Oct 2017 09:53:24 +0000 (11:53 +0200)
committerRobert Swiecki <robert@swiecki.net>
Sun, 8 Oct 2017 09:53:24 +0000 (11:53 +0200)
subproc.c

index 26972e4..398c549 100644 (file)
--- a/subproc.c
+++ b/subproc.c
@@ -266,11 +266,11 @@ static void subprocSeccompViolation(struct nsjconf_t *nsjconf, siginfo_t * si)
                     (int)si->si_pid, sc, arg1, arg2, arg3, arg4, arg5, arg6, sp, pc,
                     si->si_syscall);
        } else if (ret == 3) {
-               LOG_W("PID: %d, SP: %#tx, PC: %#tx (SI_SYSCALL: %#x)", (int)si->si_pid, arg1, arg2,
-                     si->si_syscall);
+               LOG_W("PID: %d, Syscall number: %#x, SP: %#tx, PC: %#tx", si->si_syscall,
+                     (int)si->si_pid, arg1, arg2);
        } else {
-               LOG_W("PID: %d, Syscall string '%s' (SI_SYSCALL: %#x)", (int)si->si_pid, buf,
-                     si->si_syscall);
+               LOG_W("PID: %d, Syscall number: %#x, Syscall string '%s'", si->si_syscall,
+                     (int)si->si_pid, buf);
        }
 }