diff options
author | Tim Potter <tpot@samba.org> | 2003-08-04 02:49:04 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-08-04 02:49:04 +0000 |
commit | 4ccbfa3edca9d6b6abc2ad46f7734be82f5e994e (patch) | |
tree | 63a279850eb8eef07cd8b9f98496347eac14907f /packet-dcerpc-cds_solicit.c | |
parent | 77f0aa01033ca862f0ba14692859051eb5b6430f (diff) | |
download | wireshark-4ccbfa3edca9d6b6abc2ad46f7734be82f5e994e.tar.gz wireshark-4ccbfa3edca9d6b6abc2ad46f7734be82f5e994e.tar.bz2 wireshark-4ccbfa3edca9d6b6abc2ad46f7734be82f5e994e.zip |
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.
svn path=/trunk/; revision=8123
Diffstat (limited to 'packet-dcerpc-cds_solicit.c')
-rw-r--r-- | packet-dcerpc-cds_solicit.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/packet-dcerpc-cds_solicit.c b/packet-dcerpc-cds_solicit.c index be4bc0c2e6..7c357c545f 100644 --- a/packet-dcerpc-cds_solicit.c +++ b/packet-dcerpc-cds_solicit.c @@ -4,7 +4,7 @@ * This information is based off the released idl files from opengroup. * ftp://ftp.opengroup.org/pub/dce122/dce/src/directory.tar.gz directory/cds/stubs/cds_solicit.idl * - * $Id: packet-dcerpc-cds_solicit.c,v 1.3 2003/06/26 04:30:26 tpot Exp $ + * $Id: packet-dcerpc-cds_solicit.c,v 1.4 2003/08/04 02:49:03 tpot Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -78,14 +78,6 @@ proto_register_cds_solicit (void) void proto_reg_handoff_cds_solicit (void) { - header_field_info *hf_info; - /* Register the protocol as dcerpc */ dcerpc_init_uuid (proto_cds_solicit, ett_cds_solicit, &uuid_cds_solicit, ver_cds_solicit, cds_solicit_dissectors, hf_cds_solicit_opnum); - - /* Set opnum strings from subdissector list */ - - hf_info = proto_registrar_get_nth(hf_cds_solicit_opnum); - hf_info->strings = value_string_from_subdissectors( - cds_solicit_dissectors, array_length(cds_solicit_dissectors)); } |