Skip to content

Commit

Permalink
- Fix #1149: unbound-control-setup hangs sometimes depending on
Browse files Browse the repository at this point in the history
  the openssl version.
  • Loading branch information
wcawijngaards committed Oct 8, 2024
1 parent a1b25f0 commit e671716
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions doc/Changelog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion smallapp/unbound-control-setup.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e671716

Please sign in to comment.