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-tapi.c | |
parent | 77f0aa01033ca862f0ba14692859051eb5b6430f (diff) |
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-tapi.c')
-rw-r--r-- | packet-dcerpc-tapi.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/packet-dcerpc-tapi.c b/packet-dcerpc-tapi.c index 59a4036887..40d955ef0e 100644 --- a/packet-dcerpc-tapi.c +++ b/packet-dcerpc-tapi.c @@ -2,7 +2,7 @@ * Routines for DCERPC TAPI packet disassembly * Copyright 2002, Ronnie Sahlberg * - * $Id: packet-dcerpc-tapi.c,v 1.6 2003/06/26 04:30:30 tpot Exp $ + * $Id: packet-dcerpc-tapi.c,v 1.7 2003/08/04 02:48:59 tpot Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -240,17 +240,9 @@ static hf_register_info hf[] = { void proto_reg_handoff_dcerpc_tapi(void) { - header_field_info *hf_info; - /* Register protocol as dcerpc */ dcerpc_init_uuid(proto_dcerpc_tapi, ett_dcerpc_tapi, &uuid_dcerpc_tapi, ver_dcerpc_tapi, dcerpc_tapi_dissectors, hf_tapi_opnum); - - /* Set opnum strings from subdissector list */ - - hf_info = proto_registrar_get_nth(hf_tapi_opnum); - hf_info->strings = value_string_from_subdissectors( - dcerpc_tapi_dissectors, array_length(dcerpc_tapi_dissectors)); } |