From 5d5d507a2977fc97c595e4d25a480889001ef615 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 23 Feb 2002 02:16:12 +0000 Subject: [PATCH] From John Mackenzie: put missing initializations of table entries in "plugins.c". svn path=/trunk/; revision=4790 --- AUTHORS | 4 ++++ doc/ethereal.pod.template | 1 + epan/plugins.c | 26 +++++++++++++++++++++----- 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 747578e095..da3361ef03 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1056,6 +1056,10 @@ Kari Tiirikainen { COPS-PR extension support } +John Mackenzie { + Put missing initializations of table entries in "plugins.c" +} + Alain Magloire was kind enough to give his permission to use his version of snprintf.c. diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template index d0b9b52273..647b211629 100644 --- a/doc/ethereal.pod.template +++ b/doc/ethereal.pod.template @@ -1386,6 +1386,7 @@ B. Dermot Bradley Adam Sulmicki Kari Tiirikainen + John Mackenzie Alain Magloire was kind enough to give his permission to use his version of snprintf.c. diff --git a/epan/plugins.c b/epan/plugins.c index 51bfecf50d..f1fd26201b 100644 --- a/epan/plugins.c +++ b/epan/plugins.c @@ -1,7 +1,7 @@ /* plugins.c * plugin routines * - * $Id: plugins.c,v 1.49 2002/02/22 08:56:47 guy Exp $ + * $Id: plugins.c,v 1.50 2002/02/23 02:16:12 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -417,11 +417,27 @@ init_plugins(const char *plugin_dir) patable.p_register_giop_user = register_giop_user; patable.p_is_big_endian = is_big_endian; - patable.p_get_CDR_string = get_CDR_string; - patable.p_get_CDR_ulong = get_CDR_ulong; - patable.p_get_CDR_enum = get_CDR_enum; - patable.p_get_CDR_object = get_CDR_object; + patable.p_get_CDR_encap_info = get_CDR_encap_info; + + patable.p_get_CDR_any = get_CDR_any; patable.p_get_CDR_boolean = get_CDR_boolean; + patable.p_get_CDR_char = get_CDR_char; + patable.p_get_CDR_double = get_CDR_double; + patable.p_get_CDR_enum = get_CDR_enum; + patable.p_get_CDR_fixed = get_CDR_fixed; + patable.p_get_CDR_float = get_CDR_float; + patable.p_get_CDR_interface = get_CDR_interface; + patable.p_get_CDR_long = get_CDR_long; + patable.p_get_CDR_object = get_CDR_object; + patable.p_get_CDR_octet = get_CDR_octet; + patable.p_get_CDR_octet_seq = get_CDR_octet_seq; + patable.p_get_CDR_short = get_CDR_short; + patable.p_get_CDR_string = get_CDR_string; + patable.p_get_CDR_typeCode = get_CDR_typeCode; + patable.p_get_CDR_ulong = get_CDR_ulong; + patable.p_get_CDR_ushort = get_CDR_ushort; + patable.p_get_CDR_wchar = get_CDR_wchar; + patable.p_get_CDR_wstring = get_CDR_wstring; patable.p_is_tpkt = is_tpkt; patable.p_dissect_tpkt_encap = dissect_tpkt_encap;