summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
Diffstat (limited to 'sbin')
-rw-r--r--sbin/ipfw/ipfw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipfw/ipfw.c b/sbin/ipfw/ipfw.c
index fd1ab5d..e8a9c80 100644
--- a/sbin/ipfw/ipfw.c
+++ b/sbin/ipfw/ipfw.c
@@ -686,7 +686,7 @@ add(ac,av)
else show_usage("missing ``from''\n");
if (ac && !strncmp(*av,"not",strlen(*av))) {
- rule.fw_flag |= IP_FW_F_INVSRC;
+ rule.fw_flg |= IP_FW_F_INVSRC;
av++; ac--;
}
if (!ac) show_usage("Missing arguments\n");
@@ -704,7 +704,7 @@ add(ac,av)
else show_usage("missing ``to''\n");
if (ac && !strncmp(*av,"not",strlen(*av))) {
- rule.fw_flag |= IP_FW_F_INVDST;
+ rule.fw_flg |= IP_FW_F_INVDST;
av++; ac--;
}
if (!ac) show_usage("Missing arguments\n");
OpenPOWER on IntegriCloud