summaryrefslogtreecommitdiff
path: root/print-fr.c
diff options
context:
space:
mode:
authorguy <guy>2005-07-07 01:22:15 +0000
committerguy <guy>2005-07-07 01:22:15 +0000
commitd953299b94043156cab202c486dc5b864f71c633 (patch)
treed9178547cd73d7a9716b8dd080f202b9b7218553 /print-fr.c
parente085b97e4b488bfd158529331e20ebaeb2b79f0f (diff)
downloadtcpdump-d953299b94043156cab202c486dc5b864f71c633.tar.gz
Add a flag to suppress the "default_print()" call made in various
link-layer print routines if no other print routine claimed the packet. Test whether that flag is set rather than testing whether neither of -x or -q were specified, and have -x, -q, *and* -X set that flag, so that -X suppresses it just as -x does. That way you don't get those pckets dumped twice if -X was specified.
Diffstat (limited to 'print-fr.c')
-rw-r--r--print-fr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print-fr.c b/print-fr.c
index 082847c2..ea56c6da 100644
--- a/print-fr.c
+++ b/print-fr.c
@@ -21,7 +21,7 @@
#ifndef lint
static const char rcsid[] _U_ =
- "@(#)$Header: /tcpdump/master/tcpdump/print-fr.c,v 1.36 2005-05-27 14:53:48 hannes Exp $ (LBL)";
+ "@(#)$Header: /tcpdump/master/tcpdump/print-fr.c,v 1.37 2005-07-07 01:22:18 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -276,7 +276,7 @@ fr_print(register const u_char *p, u_int length)
if (!eflag)
fr_hdr_print(length + hdr_len, hdr_len,
dlci, flags, nlpid);
- if (!xflag && !qflag)
+ if (!suppress_default_print)
default_print(p - hdr_len, length + hdr_len);
}
break;