diff options
author | Damien Miller <djm@mindrot.org> | 2021-04-03 08:47:37 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-04-03 08:47:37 +0200 |
commit | 57ed647ee07bb883a2f2264231bcd1df6a5b9392 (patch) | |
tree | b6857717f688761bc7c4891ece4b23a4413076fa /sandbox-seccomp-filter.c | |
parent | upstream: highly polished whitespace, mostly fixing spaces-for-tab (diff) | |
download | openssh-57ed647ee07bb883a2f2264231bcd1df6a5b9392.tar.xz openssh-57ed647ee07bb883a2f2264231bcd1df6a5b9392.zip |
polish whitespace for portable files
Diffstat (limited to 'sandbox-seccomp-filter.c')
-rw-r--r-- | sandbox-seccomp-filter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index 7981c84ad..798b24bd8 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c @@ -384,7 +384,7 @@ ssh_sandbox_child_debugging(void) fatal("%s: sigaction(SIGSYS): %s", __func__, strerror(errno)); if (sigprocmask(SIG_UNBLOCK, &mask, NULL) == -1) fatal("%s: sigprocmask(SIGSYS): %s", - __func__, strerror(errno)); + __func__, strerror(errno)); } #endif /* SANDBOX_SECCOMP_FILTER_DEBUG */ @@ -413,13 +413,13 @@ ssh_sandbox_child(struct ssh_sandbox *box) debug3("%s: setting PR_SET_NO_NEW_PRIVS", __func__); if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1) { debug("%s: prctl(PR_SET_NO_NEW_PRIVS): %s", - __func__, strerror(errno)); + __func__, strerror(errno)); nnp_failed = 1; } debug3("%s: attaching seccomp filter program", __func__); if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &preauth_program) == -1) debug("%s: prctl(PR_SET_SECCOMP): %s", - __func__, strerror(errno)); + __func__, strerror(errno)); else if (nnp_failed) fatal("%s: SECCOMP_MODE_FILTER activated but " "PR_SET_NO_NEW_PRIVS failed", __func__); |