aboutsummaryrefslogtreecommitdiffstats
path: root/packet-wtp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-12-02 20:18:46 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-12-02 20:18:46 +0000
commitbc2fcecf5054ebd36a656999e4b34ff86c4350cb (patch)
treed135d48d856c440cffe765a3427051655ce3c3e8 /packet-wtp.c
parenta7e4d8317ba8cb726b5d73b861a25517ddd7e709 (diff)
From Olivier Biot: show the packet sequence number and the "Missing
Packets" value in the WTP header in decimal, not hex. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6722 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-wtp.c')
-rw-r--r--packet-wtp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-wtp.c b/packet-wtp.c
index 69143c3973..6415cfca4d 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.40 2002/10/24 06:17:36 guy Exp $
+ * $Id: packet-wtp.c,v 1.41 2002/12/02 20:18:46 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -798,14 +798,14 @@ proto_register_wtp(void)
{ &hf_wtp_header_sequence_number,
{ "Packet Sequence Number",
"wtp.header.sequence",
- FT_UINT8, BASE_HEX, NULL, 0x00,
+ FT_UINT8, BASE_DEC, NULL, 0x00,
"Packet Sequence Number", HFILL
}
},
{ &hf_wtp_header_missing_packets,
{ "Missing Packets",
"wtp.header.missing_packets",
- FT_UINT8, BASE_HEX, NULL, 0x00,
+ FT_UINT8, BASE_DEC, NULL, 0x00,
"Missing Packets", HFILL
}
},