diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-07-29 22:10:18 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-07-29 22:10:18 +0000 |
commit | 091a2ca7d9ccc011f5e77765171d221b9c3d2b47 (patch) | |
tree | a01bbdd38540c430b61833f191958851506bcd77 | |
parent | 8ba1ff5e2817ffe579f6bf4f55cd6c5a0dbcfff3 (diff) | |
download | wireshark-091a2ca7d9ccc011f5e77765171d221b9c3d2b47.tar.gz wireshark-091a2ca7d9ccc011f5e77765171d221b9c3d2b47.tar.bz2 wireshark-091a2ca7d9ccc011f5e77765171d221b9c3d2b47.zip |
Put "WTP" into the Info column for segmented invoke/result PDUs on which
we don't try to do reassembly, just as it's put in for other PDUs.
svn path=/trunk/; revision=8101
-rw-r--r-- | packet-wtp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-wtp.c b/packet-wtp.c index fa827279cd..301f3ab92c 100644 --- a/packet-wtp.c +++ b/packet-wtp.c @@ -2,7 +2,7 @@ * * Routines to dissect WTP component of WAP traffic. * - * $Id: packet-wtp.c,v 1.50 2003/07/29 22:02:38 guy Exp $ + * $Id: packet-wtp.c,v 1.51 2003/07/29 22:10:18 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -655,7 +655,7 @@ dissect_wtp_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) */ if (check_col(pinfo->cinfo, COL_INFO)) col_add_fstr(pinfo->cinfo, COL_INFO, - "%s (%u)", + "WTP %s (%u)", (pdut == SEGMENTED_INVOKE ? "Segmented Invoke" : "Segmented Result"), psn); |