From: Yorgos Thessalonikefs Date: Wed, 7 Feb 2024 09:49:28 +0000 (+0100) Subject: - For #1006: fix logic error introduced by previous fix. X-Git-Tag: release-1.19.3rc1~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3f5175584b0bb9ff7d417bc195ec6e4316ae58d3;p=thirdparty%2Funbound.git - For #1006: fix logic error introduced by previous fix. --- diff --git a/dnstap/dnstap.m4 b/dnstap/dnstap.m4 index a6b707004..80b7bc92c 100644 --- a/dnstap/dnstap.m4 +++ b/dnstap/dnstap.m4 @@ -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!])