diff options
author | 2014-06-13 08:26:29 +0000 | |
---|---|---|
committer | 2014-06-13 08:26:29 +0000 | |
commit | e35a2a5679e4382a1b263eb31e583d9a5893829a (patch) | |
tree | 22becdd70ee0d6ad091edcb9426c2b0c6577aedb | |
parent | Add new getentropy() system call. Code and pressure from matthew. (diff) | |
download | wireguard-openbsd-e35a2a5679e4382a1b263eb31e583d9a5893829a.tar.xz wireguard-openbsd-e35a2a5679e4382a1b263eb31e583d9a5893829a.zip |
permit SYS_getentropy
from matthew
-rw-r--r-- | usr.bin/ssh/sandbox-systrace.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sandbox-systrace.c b/usr.bin/ssh/sandbox-systrace.c index 5f83fbcdf12..bf57ff277eb 100644 --- a/usr.bin/ssh/sandbox-systrace.c +++ b/usr.bin/ssh/sandbox-systrace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sandbox-systrace.c,v 1.9 2014/01/31 16:39:19 tedu Exp $ */ +/* $OpenBSD: sandbox-systrace.c,v 1.10 2014/06/13 08:26:29 deraadt Exp $ */ /* * Copyright (c) 2011 Damien Miller <djm@mindrot.org> * @@ -52,6 +52,7 @@ static const struct sandbox_policy preauth_policy[] = { { SYS_close, SYSTR_POLICY_PERMIT }, { SYS_exit, SYSTR_POLICY_PERMIT }, { SYS_getpid, SYSTR_POLICY_PERMIT }, + { SYS_getentropy, SYSTR_POLICY_PERMIT }, { SYS_gettimeofday, SYSTR_POLICY_PERMIT }, { SYS_clock_gettime, SYSTR_POLICY_PERMIT }, { SYS_madvise, SYSTR_POLICY_PERMIT }, |