gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: fix impropper negation


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: fix impropper negation
Date: Wed, 21 Nov 2018 00:32:02 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new c737a34c0 fix impropper negation
c737a34c0 is described below

commit c737a34c0f9fd5011048331ed5851b0524dec740
Author: Christian Grothoff <address@hidden>
AuthorDate: Wed Nov 21 00:32:00 2018 +0100

    fix impropper negation
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 82329ef45..69a7d0c24 100644
--- a/configure.ac
+++ b/configure.ac
@@ -206,7 +206,7 @@ rm -f /tmp/gnunet_test_cosks_ssh_garbage
 # iptables is a soft requirement to run tests
 AC_PATH_TARGET_TOOL(VAR_IPTABLES_BINARY, iptables, false)
 
-if test x"$VAR_IPTABLES_BINARY" != x"false"
+if test x"$VAR_IPTABLES_BINARY" = x"false"
 then
   if test -x "/sbin/iptables"
   then
@@ -227,7 +227,7 @@ fi
 AC_PATH_TARGET_TOOL(VAR_IFCONFIG_BINARY, ifconfig, false)
 
 AC_CHECK_PROG(VAR_IFCONFIG_BINARY, ifconfig, true, false)
-if test x"$VAR_IFCONFIG_BINARY" != x"false"
+if test x"$VAR_IFCONFIG_BINARY" = x"false"
 then
   if test -x "/sbin/ifconfig"
   then

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]