aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2020-07-17 19:07:34 +0000
committerCy Schubert <cy@FreeBSD.org>2020-07-17 19:07:34 +0000
commitce1c2aafce7f78e4f5a2722affc039ef38aa3ab9 (patch)
tree0cf291810b79740a01026eec71e91ae04be9694a /contrib
parentb8c46d561e33905d00acf44dd350206e0a818d4a (diff)
downloadsrc-ce1c2aafce7f78e4f5a2722affc039ef38aa3ab9.tar.gz
src-ce1c2aafce7f78e4f5a2722affc039ef38aa3ab9.zip
Notes
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ipfilter/tools/ipfstat.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/contrib/ipfilter/tools/ipfstat.c b/contrib/ipfilter/tools/ipfstat.c
index e18eecaabe28..d37c46dd110a 100644
--- a/contrib/ipfilter/tools/ipfstat.c
+++ b/contrib/ipfilter/tools/ipfstat.c
@@ -57,7 +57,9 @@ static wordtab_t *state_fields = NULL;
int nohdrfields = 0;
int opts = 0;
+#ifdef USE_INET6
int use_inet6 = 0;
+#endif
int live_kernel = 1;
int state_fd = -1;
int ipf_fd = -1;
@@ -410,8 +412,13 @@ int main(argc,argv)
#ifdef STATETOP
else if (opts & OPT_STATETOP)
topipstates(saddr, daddr, sport, dport, protocol,
- use_inet6 ? 6 : 4, refreshtime, topclosed, filter);
+#ifdef USE_INET6
+ use_inet6 ? 6 : 4,
+#else
+ 4,
+#endif
#endif
+ refreshtime, topclosed, filter);
else if (opts & OPT_AUTHSTATS)
showauthstates(frauthstp);
else if (opts & OPT_GROUPS)
@@ -904,10 +911,13 @@ static void printdeadlist(fiop, out, set, fp, group, comment)
return;
}
fp = &fb;
+#ifdef USE_INET6
if (use_inet6 != 0) {
if (fp->fr_family != 0 && fp->fr_family != 6)
continue;
- } else {
+ } else
+#endif
+ {
if (fp->fr_family != 0 && fp->fr_family != 4)
continue;
}