summaryrefslogtreecommitdiffstats
path: root/sandbox-seccomp-filter.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-06-02 01:17:09 +0200
committerDarren Tucker <dtucker@zip.com.au>2013-06-02 01:17:09 +0200
commite9887d1c37940b9d6c72d55cfad7a40de4c6e28d (patch)
treef4a9916159cd7ad5f2b11707590618b9a0408b19 /sandbox-seccomp-filter.c
parentfix typo (diff)
downloadopenssh-e9887d1c37940b9d6c72d55cfad7a40de4c6e28d.tar.xz
openssh-e9887d1c37940b9d6c72d55cfad7a40de4c6e28d.zip
- (dtucker) [sandbox-seccomp-filter.c] Allow clock_gettimeofday.
Diffstat (limited to 'sandbox-seccomp-filter.c')
-rw-r--r--sandbox-seccomp-filter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
index e12418399..cc1465305 100644
--- a/sandbox-seccomp-filter.c
+++ b/sandbox-seccomp-filter.c
@@ -91,6 +91,7 @@ static const struct sock_filter preauth_insns[] = {
SC_DENY(open, EACCES),
SC_ALLOW(getpid),
SC_ALLOW(gettimeofday),
+ SC_ALLOW(clock_gettime),
#ifdef __NR_time /* not defined on EABI ARM */
SC_ALLOW(time),
#endif