Skip to content

Commit

Permalink
- For #1006: fix logic error introduced by previous fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
gthess committed Feb 7, 2024
1 parent 11fff22 commit 3f51755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dnstap/dnstap.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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!])
Expand Down

0 comments on commit 3f51755

Please sign in to comment.