aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-mgmt.c
diff options
context:
space:
mode:
authortpot <tpot@f5534014-38df-0310-8fa8-9805f1628bb7>2002-06-24 00:03:18 +0000
committertpot <tpot@f5534014-38df-0310-8fa8-9805f1628bb7>2002-06-24 00:03:18 +0000
commit39fcea8a39ab86c493cfec8895d2c533e99f6420 (patch)
treef263cc80f6ca77b7160544442eeff3d5e2dd5377 /packet-dcerpc-mgmt.c
parent79ee4c939324175b8f55c44cd59ddfd68dff2807 (diff)
Change each DCERPC dissector to pass in a hf value on initialisation
for a value_string that corresponds to that dissectors opnums. Pass in -1 if no such table is available. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5749 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-mgmt.c')
-rw-r--r--packet-dcerpc-mgmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-dcerpc-mgmt.c b/packet-dcerpc-mgmt.c
index d9ee080e21..58ad9d009e 100644
--- a/packet-dcerpc-mgmt.c
+++ b/packet-dcerpc-mgmt.c
@@ -2,7 +2,7 @@
* Routines for dcerpc mgmt dissection
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
- * $Id: packet-dcerpc-mgmt.c,v 1.3 2002/05/31 00:31:13 tpot Exp $
+ * $Id: packet-dcerpc-mgmt.c,v 1.4 2002/06/24 00:03:17 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -80,5 +80,5 @@ void
proto_reg_handoff_mgmt (void)
{
/* Register the protocol as dcerpc */
- dcerpc_init_uuid (proto_mgmt, ett_mgmt, &uuid_mgmt, ver_mgmt, mgmt_dissectors);
+ dcerpc_init_uuid (proto_mgmt, ett_mgmt, &uuid_mgmt, ver_mgmt, mgmt_dissectors, -1);
}