diff options
author | guy <guy> | 2005-07-07 01:22:15 +0000 |
---|---|---|
committer | guy <guy> | 2005-07-07 01:22:15 +0000 |
commit | d953299b94043156cab202c486dc5b864f71c633 (patch) | |
tree | d9178547cd73d7a9716b8dd080f202b9b7218553 /print-sctp.c | |
parent | e085b97e4b488bfd158529331e20ebaeb2b79f0f (diff) | |
download | tcpdump-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-sctp.c')
-rw-r--r-- | print-sctp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-sctp.c b/print-sctp.c index b18ab793..d38cfde2 100644 --- a/print-sctp.c +++ b/print-sctp.c @@ -35,7 +35,7 @@ #ifndef lint static const char rcsid[] _U_ = -"@(#) $Header: /tcpdump/master/tcpdump/print-sctp.c,v 1.19 2005-05-06 10:53:01 guy Exp $ (NETLAB/PEL)"; +"@(#) $Header: /tcpdump/master/tcpdump/print-sctp.c,v 1.20 2005-07-07 01:22:20 guy Exp $ (NETLAB/PEL)"; #endif #ifdef HAVE_CONFIG_H @@ -200,7 +200,7 @@ void sctp_print(const u_char *bp, /* beginning of sctp packet */ printf("[Payload"); - if (!xflag && !qflag) { + if (!suppress_default_print) { payloadPtr = (const u_char *) (++dataHdrPtr); printf(":"); if (htons(chunkDescPtr->chunkLength) < |