summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-h248_annex_c.c
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-02-23 20:57:22 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-02-23 20:57:22 +0000
commit4211d0dba258656a1c47495aa080438332abd9a4 (patch)
treea7618957318c3e089821169d5637db26a1079712 /epan/dissectors/packet-h248_annex_c.c
parent5b9457a1045b08add6fe136867a1e8290e8d5167 (diff)
downloadwireshark-4211d0dba258656a1c47495aa080438332abd9a4.tar.gz
fix some bugs introduced in the latest releases and add value_strings for param, evt, sig and stat ids s well as "sub-parameters".
svn path=/trunk/; revision=20908
Diffstat (limited to 'epan/dissectors/packet-h248_annex_c.c')
-rw-r--r--epan/dissectors/packet-h248_annex_c.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-h248_annex_c.c b/epan/dissectors/packet-h248_annex_c.c
index 908ec19180..496bb92fa1 100644
--- a/epan/dissectors/packet-h248_annex_c.c
+++ b/epan/dissectors/packet-h248_annex_c.c
@@ -32,7 +32,6 @@
/* H.248 Annex C */
static int proto_h248_pkg_annexc = -1;
-static int hf_h248_pkg_annexc_parameters = -1;
static int hf_h248_pkg_annexc_media = -1;
static int hf_h248_pkg_annexc_ACodec = -1;
@@ -952,8 +951,11 @@ static h248_pkg_param_t h248_annexc_package_properties[] = {
static h248_package_t h248_annexc_package = {
0x0000,
&proto_h248_pkg_annexc,
- &hf_h248_pkg_annexc_parameters,
&ett_annexc,
+ h248_annexc_package_properties_vals,
+ NULL,
+ NULL,
+ NULL,
h248_annexc_package_properties, /* properties */
NULL, /* signals */
NULL, /* events */
@@ -963,8 +965,6 @@ static h248_package_t h248_annexc_package = {
void proto_register_h248_annex_c(void) {
static hf_register_info hf[] = {
- { &hf_h248_pkg_annexc_parameters,
- { "Parameter", "h248.pkg.annexc.parameter", FT_UINT16, BASE_HEX, VALS(h248_annexc_package_properties_vals), 0, "Annex-C Parameter ID", HFILL }},
{ &hf_h248_pkg_annexc_media,
{ "Media", "h248.pkg.annexc.media", FT_UINT32, BASE_HEX, VALS(h248_annexc_media_vals), 0, "Media Type", HFILL }},
{ &hf_h248_pkg_annexc_ACodec,