netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH iptables] configure: Fix assignment statement
@ 2016-06-22 19:41 Shivani Bhardwaj
  2016-06-23  6:23 ` Florian Westphal
  0 siblings, 1 reply; 2+ messages in thread
From: Shivani Bhardwaj @ 2016-06-22 19:41 UTC (permalink / raw)
  To: netfilter-devel

The assignment statement was interpreted as executing enable_connlabel
command with the argument "no". This was due to the whitespaces in the
assignment.

Fixes the trivial bug introduced in commit 3b7a227 (configure: Show
support for connlabel)

Reported-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index c91e9e7..b47516b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -175,7 +175,7 @@ if test "x$enable_connlabel" = "xyes"; then
 	if test "$nfconntrack" -ne 1; then
 		blacklist_modules="$blacklist_modules connlabel";
 		echo "WARNING: libnetfilter_conntrack not found, connlabel match will not be built";
-		enable_connlabel = "no";
+		enable_connlabel="no";
 	fi;
 else
 	blacklist_modules="$blacklist_modules connlabel";
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-06-23  6:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-22 19:41 [PATCH iptables] configure: Fix assignment statement Shivani Bhardwaj
2016-06-23  6:23 ` Florian Westphal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).