mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- For #1006: fix logic error introduced by previous fix.
This commit is contained in:
parent
11fff226f3
commit
3f5175584b
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ AC_DEFUN([dt_DNSTAP],
|
|||
[opt_dnstap_socket_path=$withval],
|
||||
[opt_dnstap_socket_path="$1"])
|
||||
|
||||
if test "x$opt_dnstap" == "xno"; then
|
||||
if test "x$opt_dnstap" != "xno"; then
|
||||
AC_PATH_PROG([PROTOC_C], [protoc-c])
|
||||
if test -z "$PROTOC_C"; then
|
||||
AC_MSG_ERROR([The protoc-c program was not found. Please install protobuf-c!])
|
||||
|
|
|
|||
Loading…
Reference in a new issue