From 14533a98b9498ab454e2f03088a361c9eb92bf6f Mon Sep 17 00:00:00 2001 From: Maxim Konovalov Date: Fri, 9 Apr 2004 17:26:01 +0000 Subject: [PATCH] o Fix an incorrect parsing of 0.0.0.0/0 expression. PR: kern/64778 MFC after: 6 weeks --- sbin/ipfw/ipfw2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/ipfw/ipfw2.c b/sbin/ipfw/ipfw2.c index aa8aa937490e..9063b530a58d 100644 --- a/sbin/ipfw/ipfw2.c +++ b/sbin/ipfw/ipfw2.c @@ -2055,7 +2055,7 @@ fill_ip(ipfw_insn_ip *cmd, char *av) errx(EX_DATAERR, "not any never matches"); } /* else do nothing and skip this entry */ - continue; + return; } /* A single IP can be stored in an optimized format */ if (d[1] == IP_MASK_ALL && av == NULL && len == 0) {