]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix #1149: unbound-control-setup hangs sometimes depending on
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 8 Oct 2024 09:54:07 +0000 (11:54 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 8 Oct 2024 09:54:07 +0000 (11:54 +0200)
  the openssl version.

doc/Changelog
smallapp/unbound-control-setup.sh.in

index e35c58d55b82d8cb6ace84b3f6e19326fad16c43..c28f8b41c7d498aa80d059a778ad24617fb3d598 100644 (file)
@@ -1,3 +1,7 @@
+8 October 2024: Wouter
+       - Fix #1149: unbound-control-setup hangs sometimes depending on
+         the openssl version.
+
 3 October 2024: Yorgos
        - Fix CVE-2024-8508, unbounded name compression could lead to denial
          of service.
index 91458af369deb5fcc273c53e0056dc96d158ee5b..4a358f6bd09dff79a2d2357adec9eb9ec0865497 100644 (file)
@@ -104,7 +104,7 @@ while getopts 'd:hr' arg; do
 done
 shift $((OPTIND - 1))
 
-if ! openssl </dev/null >/dev/null 2>&1; then
+if ! openssl version </dev/null >/dev/null 2>&1; then
     echo "$0 requires openssl to be installed for keys/certificates generation." >&2
     exit 1
 fi