diff options
author | Tim Potter <tpot@samba.org> | 2002-06-24 00:03:18 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-06-24 00:03:18 +0000 |
commit | 6d6dce305d497a5d7267456d9465a7b44a6f12e9 (patch) | |
tree | f263cc80f6ca77b7160544442eeff3d5e2dd5377 /packet-dcerpc-wkssvc.c | |
parent | 2cf14082d633ccb8c2ffc58313e86ced29282632 (diff) | |
download | wireshark-6d6dce305d497a5d7267456d9465a7b44a6f12e9.tar.gz wireshark-6d6dce305d497a5d7267456d9465a7b44a6f12e9.tar.bz2 wireshark-6d6dce305d497a5d7267456d9465a7b44a6f12e9.zip |
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-wkssvc.c')
-rw-r--r-- | packet-dcerpc-wkssvc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-dcerpc-wkssvc.c b/packet-dcerpc-wkssvc.c index 509dbc3bbf..05db551364 100644 --- a/packet-dcerpc-wkssvc.c +++ b/packet-dcerpc-wkssvc.c @@ -2,7 +2,7 @@ * Routines for SMB \\PIPE\\wkssvc packet disassembly * Copyright 2001, Tim Potter <tpot@samba.org> * - * $Id: packet-dcerpc-wkssvc.c,v 1.3 2002/05/31 00:31:13 tpot Exp $ + * $Id: packet-dcerpc-wkssvc.c,v 1.4 2002/06/24 00:03:18 tpot Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -68,5 +68,5 @@ proto_reg_handoff_dcerpc_wkssvc(void) dcerpc_init_uuid(proto_dcerpc_wkssvc, ett_dcerpc_wkssvc, &uuid_dcerpc_wkssvc, ver_dcerpc_wkssvc, - dcerpc_wkssvc_dissectors); + dcerpc_wkssvc_dissectors, -1); } |