aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-12 07:55:23 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-12 07:55:23 +0000
commit86442335da3e260c8ff7b985e3579eeab94648da (patch)
treeb0c9987894a6c57fd0e71130769860b7d6466dad
parentd751ce2564c71e1c84d55cb48e140c8be05f35df (diff)
Display the fragment length, and fragment ordinal number, in decimal.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4722 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--packet-dcerpc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-dcerpc.c b/packet-dcerpc.c
index c5a2381a2c..901e9f84b4 100644
--- a/packet-dcerpc.c
+++ b/packet-dcerpc.c
@@ -2,7 +2,7 @@
* Routines for DCERPC packet disassembly
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
- * $Id: packet-dcerpc.c,v 1.33 2002/02/12 07:35:20 guy Exp $
+ * $Id: packet-dcerpc.c,v 1.34 2002/02/12 07:55:23 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2152,9 +2152,9 @@ proto_register_dcerpc (void)
{ &hf_dcerpc_dg_ihint,
{ "Interface Hint", "dcerpc.dg_ihint", FT_UINT16, BASE_HEX, NULL, 0x0, "", HFILL }},
{ &hf_dcerpc_dg_frag_len,
- { "Fragment len", "dcerpc.dg_frag_len", FT_UINT16, BASE_HEX, NULL, 0x0, "", HFILL }},
+ { "Fragment len", "dcerpc.dg_frag_len", FT_UINT16, BASE_DEC, NULL, 0x0, "", HFILL }},
{ &hf_dcerpc_dg_frag_num,
- { "Fragment num", "dcerpc.dg_frag_num", FT_UINT16, BASE_HEX, NULL, 0x0, "", HFILL }},
+ { "Fragment num", "dcerpc.dg_frag_num", FT_UINT16, BASE_DEC, NULL, 0x0, "", HFILL }},
{ &hf_dcerpc_dg_auth_proto,
{ "Auth proto", "dcerpc.dg_auth_proto", FT_UINT8, BASE_HEX, NULL, 0x0, "", HFILL }},
{ &hf_dcerpc_dg_seqnum,