diff options
| author | Guido van Rooij <guido@FreeBSD.org> | 2000-02-09 20:46:45 +0000 |
|---|---|---|
| committer | Guido van Rooij <guido@FreeBSD.org> | 2000-02-09 20:46:45 +0000 |
| commit | 0f94bd564f06623168ed972780c950be707e316e (patch) | |
| tree | 89666e2a2ea69fccc657a842d9c1dbbba3f10819 /contrib/ipfilter/fils.c | |
| parent | da4009202aeb3a0b4045d48b7bb794bfab9ad7e9 (diff) | |
| parent | 14f80d3d7b0facdb829707b1b599040b7a44592a (diff) | |
Notes
Diffstat (limited to 'contrib/ipfilter/fils.c')
| -rw-r--r-- | contrib/ipfilter/fils.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/ipfilter/fils.c b/contrib/ipfilter/fils.c index eab0b4a12620..713691ddc4a7 100644 --- a/contrib/ipfilter/fils.c +++ b/contrib/ipfilter/fils.c @@ -51,7 +51,7 @@ #if !defined(lint) static const char sccsid[] = "@(#)fils.c 1.21 4/20/96 (C) 1993-1996 Darren Reed"; -static const char rcsid[] = "@(#)$Id: fils.c,v 2.2.2.4 1999/12/04 02:06:24 darrenr Exp $"; +static const char rcsid[] = "@(#)$Id: fils.c,v 2.2.2.5 2000/01/27 08:49:40 darrenr Exp $"; #endif extern char *optarg; @@ -238,11 +238,13 @@ struct friostat *fp; PRINTF(" input packets:\t\tblocked %lu passed %lu nomatch %lu", fp->f_st[0].fr_block, fp->f_st[0].fr_pass, fp->f_st[0].fr_nom); - PRINTF(" counted %lu\n", fp->f_st[0].fr_acct); + PRINTF(" counted %lu short %lu\n", + fp->f_st[0].fr_acct, fp->f_st[0].fr_short); PRINTF("output packets:\t\tblocked %lu passed %lu nomatch %lu", fp->f_st[1].fr_block, fp->f_st[1].fr_pass, fp->f_st[1].fr_nom); - PRINTF(" counted %lu\n", fp->f_st[0].fr_acct); + PRINTF(" counted %lu short %lu\n", + fp->f_st[1].fr_acct, fp->f_st[1].fr_short); PRINTF(" input packets logged:\tblocked %lu passed %lu\n", fp->f_st[0].fr_bpkl, fp->f_st[0].fr_ppkl); PRINTF("output packets logged:\tblocked %lu passed %lu\n", |
