summaryrefslogtreecommitdiff
path: root/sandbox-systrace.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2014-07-18 15:03:02 +1000
committerDamien Miller <djm@mindrot.org>2014-07-18 15:03:02 +1000
commit1b83320628cb0733e3688b85bfe4d388a7c51909 (patch)
tree90c29a8717715047a9a08e6574c06e2e6738dc15 /sandbox-systrace.c
parent6d57656331bcd754d912950e4a18ad259d596e61 (diff)
downloadopenssh-git-1b83320628cb0733e3688b85bfe4d388a7c51909.tar.gz
- djm@cvs.openbsd.org 2014/07/17 00:10:56
[sandbox-systrace.c] ifdef SYS_sendsyslog so this will compile without patching on -stable
Diffstat (limited to 'sandbox-systrace.c')
-rw-r--r--sandbox-systrace.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sandbox-systrace.c b/sandbox-systrace.c
index a74dc4f9..aaa3d8f0 100644
--- a/sandbox-systrace.c
+++ b/sandbox-systrace.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sandbox-systrace.c,v 1.12 2014/07/11 08:09:54 deraadt Exp $ */
+/* $OpenBSD: sandbox-systrace.c,v 1.13 2014/07/17 00:10:56 djm Exp $ */
/*
* Copyright (c) 2011 Damien Miller <djm@mindrot.org>
*
@@ -60,7 +60,9 @@ static const struct sandbox_policy preauth_policy[] = {
{ SYS___sysctl, SYSTR_POLICY_PERMIT },
#endif
-// { SYS_sendsyslog, SYSTR_POLICY_PERMIT },
+#ifdef SYS_sendsyslog
+ { SYS_sendsyslog, SYSTR_POLICY_PERMIT },
+#endif
{ SYS_close, SYSTR_POLICY_PERMIT },
{ SYS_exit, SYSTR_POLICY_PERMIT },
{ SYS_getpid, SYSTR_POLICY_PERMIT },