aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-mgmt.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-06-24 00:03:18 +0000
committerTim Potter <tpot@samba.org>2002-06-24 00:03:18 +0000
commit6d6dce305d497a5d7267456d9465a7b44a6f12e9 (patch)
treef263cc80f6ca77b7160544442eeff3d5e2dd5377 /packet-dcerpc-mgmt.c
parent2cf14082d633ccb8c2ffc58313e86ced29282632 (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. svn path=/trunk/; revision=5749
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);
}