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)"