summaryrefslogtreecommitdiff
path: root/packet-dcerpc-remact.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-remact.c
parent2cf14082d633ccb8c2ffc58313e86ced29282632 (diff)
downloadwireshark-6d6dce305d497a5d7267456d9465a7b44a6f12e9.tar.gz
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-remact.c')
-rw-r--r--packet-dcerpc-remact.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-dcerpc-remact.c b/packet-dcerpc-remact.c
index 94468785fe..d8a2133e58 100644
--- a/packet-dcerpc-remact.c
+++ b/packet-dcerpc-remact.c
@@ -2,7 +2,7 @@
* Routines for DCOM Remote Activation
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
- * $Id: packet-dcerpc-remact.c,v 1.4 2002/05/31 00:31:13 tpot Exp $
+ * $Id: packet-dcerpc-remact.c,v 1.5 2002/06/24 00:03:17 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -76,5 +76,5 @@ void
proto_reg_handoff_remact (void)
{
/* Register the protocol as dcerpc */
- dcerpc_init_uuid (proto_remact, ett_remact, &uuid_remact, ver_remact, remact_dissectors);
+ dcerpc_init_uuid (proto_remact, ett_remact, &uuid_remact, ver_remact, remact_dissectors, -1);
}