From 3f5175584b0bb9ff7d417bc195ec6e4316ae58d3 Mon Sep 17 00:00:00 2001 From: Yorgos Thessalonikefs Date: Wed, 7 Feb 2024 10:49:28 +0100 Subject: [PATCH] - For #1006: fix logic error introduced by previous fix. --- dnstap/dnstap.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!])