]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- For #1006: fix logic error introduced by previous fix.
authorYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Wed, 7 Feb 2024 09:49:28 +0000 (10:49 +0100)
committerYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Wed, 7 Feb 2024 09:49:28 +0000 (10:49 +0100)
dnstap/dnstap.m4

index a6b707004a241775d018154ac0453812901f179f..80b7bc92c92700f556f265870b1c3f1ead739744 100644 (file)
@@ -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!])