aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h223.c
diff options
context:
space:
mode:
authorkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-29 10:56:30 +0000
committerkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-29 10:56:30 +0000
commit2e9a99819ddc84d517fb3863dc9f20c2cb1dc4ae (patch)
tree05632f024f464e320f89a9e7fc09292c2c48cf17 /epan/dissectors/packet-h223.c
parent4cc9556b44d410a2a0c943b8963ec2535a4e6791 (diff)
RTP: display payload type name from dynamic payload type table
H.223: use just one protocol for bot dissectors for more clear protocol disabling git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36391 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h223.c')
-rw-r--r--epan/dissectors/packet-h223.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/epan/dissectors/packet-h223.c b/epan/dissectors/packet-h223.c
index fadeb13622..a70bb12742 100644
--- a/epan/dissectors/packet-h223.c
+++ b/epan/dissectors/packet-h223.c
@@ -54,7 +54,6 @@
/* Wireshark ID of the H.223 protocol */
static int proto_h223 = -1;
-static int proto_h223_bitswapped = -1;
/* The following hf_* variables are used to hold the Wireshark IDs of
* our header fields; they are filled out when we call
@@ -1599,13 +1598,11 @@ void proto_register_h223 (void)
proto_h223 =
proto_register_protocol ("ITU-T Recommendation H.223", "H.223", "h223");
- proto_h223_bitswapped =
- proto_register_protocol ("Bitswapped ITU-T Recommendation H.223", "H.223 (Bitswapped)", "h223_bitswapped");
proto_register_field_array (proto_h223, hf, array_length (hf));
proto_register_subtree_array (ett, array_length (ett));
register_dissector("h223", dissect_h223, proto_h223);
- register_dissector("h223_bitswapped", dissect_h223_bitswapped, proto_h223_bitswapped);
+ register_dissector("h223_bitswapped", dissect_h223_bitswapped, proto_h223);
/* register our init routine to be called at the start of a capture,
to clear out our hash tables etc */