diff mbox

[iptables] configure: Fix assignment statement

Message ID 1466624499-10503-1-git-send-email-shivanib134@gmail.com
State Accepted
Delegated to: Florian Westphal
Headers show

Commit Message

Shivani Bhardwaj June 22, 2016, 7:41 p.m. UTC
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(-)

Comments

Florian Westphal June 23, 2016, 6:23 a.m. UTC | #1
Shivani Bhardwaj <shivanib134@gmail.com> wrote:
> 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)

Applied, thanks for following up on this.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

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";