summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2017-03-22 12:43:02 +1100
committerColin Watson <cjwatson@debian.org>2017-08-22 16:24:44 +0100
commit735a04bf257744fc490581e9d5d7e607e4419579 (patch)
tree20a93fb4eb95e452060b310b776da6f4b7565717
parent91dbdb5e4e0a34acdf8dbc79ef70c7f3942d4a95 (diff)
Missing header on Linux/s390
Patch from Jakub Jelen Origin: https://anongit.mindrot.org/openssh.git/commit/?id=58b8cfa2a062b72139d7229ae8de567f55776f24 Last-Update: 2017-04-02 Patch-Name: s390-missing-header.patch
-rw-r--r--sandbox-seccomp-filter.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
index 3a1aedce7..08dc3a8b2 100644
--- a/sandbox-seccomp-filter.c
+++ b/sandbox-seccomp-filter.c
@@ -50,6 +50,9 @@
50#include <elf.h> 50#include <elf.h>
51 51
52#include <asm/unistd.h> 52#include <asm/unistd.h>
53#ifdef __s390__
54#include <asm/zcrypt.h>
55#endif
53 56
54#include <errno.h> 57#include <errno.h>
55#include <signal.h> 58#include <signal.h>