aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-12-02 20:18:46 +0000
committerGuy Harris <guy@alum.mit.edu>2002-12-02 20:18:46 +0000
commit066036ad0919df051db149bba0ea0dcb4facba1b (patch)
treed135d48d856c440cffe765a3427051655ce3c3e8
parentb2dc84a38475689bb43d66795ad62baa6426ecca (diff)
From Olivier Biot: show the packet sequence number and the "Missing
Packets" value in the WTP header in decimal, not hex. svn path=/trunk/; revision=6722
-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
}
},