aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-dtsprovider.c
diff options
context:
space:
mode:
authortpot <tpot@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-04 02:49:04 +0000
committertpot <tpot@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-04 02:49:04 +0000
commit62dbd85694eed3be92ff7a0f6cb425d5f304c33d (patch)
tree63a279850eb8eef07cd8b9f98496347eac14907f /packet-dcerpc-dtsprovider.c
parentee0976b59989e53406150f1d0a91c6b691713878 (diff)
Guy suggested that the dcerpc opnum value_string code could be simplified
somewhat. Now the dynamic initialisation of the value_string is contained in the value_string_from_subdissectors() function instead of being distributed amongst the dcerpc dissectors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8123 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-dtsprovider.c')
-rw-r--r--packet-dcerpc-dtsprovider.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/packet-dcerpc-dtsprovider.c b/packet-dcerpc-dtsprovider.c
index d07c92103d..ab9c125e9c 100644
--- a/packet-dcerpc-dtsprovider.c
+++ b/packet-dcerpc-dtsprovider.c
@@ -4,7 +4,7 @@
* This information is based off the released idl files from opengroup.
* ftp://ftp.opengroup.org/pub/dce122/dce/src/time.tar.gz time/service/dtsprovider.idl
*
- * $Id: packet-dcerpc-dtsprovider.c,v 1.5 2003/06/26 04:30:27 tpot Exp $
+ * $Id: packet-dcerpc-dtsprovider.c,v 1.6 2003/08/04 02:49:03 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -82,14 +82,6 @@ proto_register_dtsprovider (void)
void
proto_reg_handoff_dtsprovider (void)
{
- header_field_info *hf_info;
-
/* Register the protocol as dcerpc */
dcerpc_init_uuid (proto_dtsprovider, ett_dtsprovider, &uuid_dtsprovider, ver_dtsprovider, dtsprovider_dissectors, hf_dtsprovider_opnum);
-
- /* Set opnum strings from subdissector list */
-
- hf_info = proto_registrar_get_nth(hf_dtsprovider_opnum);
- hf_info->strings = value_string_from_subdissectors(
- dtsprovider_dissectors, array_length(dtsprovider_dissectors));
}