28 lines
624 B
Diff
28 lines
624 B
Diff
From 58b8cfa2a062b72139d7229ae8de567f55776f24 Mon Sep 17 00:00:00 2001
|
|
From: Damien Miller <djm@mindrot.org>
|
|
Date: Wed, 22 Mar 2017 12:43:02 +1100
|
|
Subject: [PATCH] Missing header on Linux/s390
|
|
|
|
Patch from Jakub Jelen
|
|
---
|
|
sandbox-seccomp-filter.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
|
|
index a8d472a63ccb..2831e9d1083c 100644
|
|
--- a/sandbox-seccomp-filter.c
|
|
+++ b/sandbox-seccomp-filter.c
|
|
@@ -50,6 +50,9 @@
|
|
#include <elf.h>
|
|
|
|
#include <asm/unistd.h>
|
|
+#ifdef __s390__
|
|
+#include <asm/zcrypt.h>
|
|
+#endif
|
|
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
--
|
|
2.15.1
|
|
|