From a8536d2f07da0d09f0b75eeb9daf358e060fbc55 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Sun, 23 Jul 2017 07:11:37 +1000 Subject: [PATCH] 4655. [bug] Lack of seccomp could be falsely reported. [RT #45599] (cherry picked from commit 4f4b94a042817debd8f9440888cde926b24c6405) --- CHANGES | 2 ++ configure | 2 +- configure.in | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 3beccb1758..99f912c5e6 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +4655. [bug] Lack of seccomp could be falsely reported. [RT #45599] + 4654. [cleanup] Don't use C++ keywords delete, new and namespace. [RT #45538] diff --git a/configure b/configure index a93b719410..f7dadb6716 100755 --- a/configure +++ b/configure @@ -25200,7 +25200,7 @@ report() { test "X$CRYPTO" = "X" -o "yes" = "$OPENSSL_ECDSA" -o "yes" = "$PKCS11_ECDSA" || \ echo " ECDSA algorithm support (--with-ecdsa)" - test "yess" = "$enable_seccomp" || \ + test "yes" = "$enable_seccomp" || \ echo " Use libseccomp system call filtering (--enable-seccomp)" test "yes" = "$want_backtrace" || \ echo " Print backtrace on crash (--enable-backtrace)" diff --git a/configure.in b/configure.in index 9ee901419d..cf752867d9 100644 --- a/configure.in +++ b/configure.in @@ -5177,8 +5177,8 @@ report() { echo " GOST algorithm support (--with-gost)" test "X$CRYPTO" = "X" -o "yes" = "$OPENSSL_ECDSA" -o "yes" = "$PKCS11_ECDSA" || \ echo " ECDSA algorithm support (--with-ecdsa)" - - test "yess" = "$enable_seccomp" || \ + + test "yes" = "$enable_seccomp" || \ echo " Use libseccomp system call filtering (--enable-seccomp)" test "yes" = "$want_backtrace" || \ echo " Print backtrace on crash (--enable-backtrace)"