aboutsummaryrefslogtreecommitdiff
path: root/contrib/ipfilter/lib/printportcmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/lib/printportcmp.c')
-rw-r--r--contrib/ipfilter/lib/printportcmp.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/contrib/ipfilter/lib/printportcmp.c b/contrib/ipfilter/lib/printportcmp.c
deleted file mode 100644
index 2a5bd0229201..000000000000
--- a/contrib/ipfilter/lib/printportcmp.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* $FreeBSD$ */
-
-/*
- * Copyright (C) 2012 by Darren Reed.
- *
- * See the IPFILTER.LICENCE file for details on licencing.
- *
- * $Id$
- */
-
-#include "ipf.h"
-
-
-void
-printportcmp(pr, frp)
- int pr;
- frpcmp_t *frp;
-{
- static char *pcmp1[] = { "*", "=", "!=", "<", ">", "<=", ">=",
- "<>", "><", ":" };
-
- if (frp->frp_cmp == FR_INRANGE || frp->frp_cmp == FR_OUTRANGE)
- PRINTF(" port %d %s %d", frp->frp_port,
- pcmp1[frp->frp_cmp], frp->frp_top);
- else if (frp->frp_cmp == FR_INCRANGE)
- PRINTF(" port %d:%d", frp->frp_port, frp->frp_top);
- else
- PRINTF(" port %s %s", pcmp1[frp->frp_cmp],
- portname(pr, frp->frp_port));
-}