aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-07-20 09:51:19 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-07-20 09:51:19 +0000
commitb0b683d26ab595872766a15832e031df0af8bcba (patch)
treeb1e57ff4ec3986f94d7080057ff66c4518cde150 /plugins/giop
parentc045cf64814f9b32e3a7ba5c3a7b2914fbb7ddc5 (diff)
Get rid of zero-length arrays.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3753 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/giop')
-rw-r--r--plugins/giop/packet-cosnaming.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/giop/packet-cosnaming.c b/plugins/giop/packet-cosnaming.c
index 89e635508b..54b846d96a 100644
--- a/plugins/giop/packet-cosnaming.c
+++ b/plugins/giop/packet-cosnaming.c
@@ -1806,11 +1806,13 @@ void proto_register_giop_cosnaming(void) {
/* setup list of header fields */
+#if 0
static hf_register_info hf[] = {
/* no fields yet */
};
+#endif
/* setup protocol subtree array */
@@ -1822,7 +1824,9 @@ void proto_register_giop_cosnaming(void) {
proto_cosnaming = proto_register_protocol("Cosnaming Dissector Using GIOP API" , "COSNAMING", "giop-cosnaming" );
+#if 0
proto_register_field_array(proto_cosnaming, hf, array_length(hf));
+#endif
proto_register_subtree_array(ett,array_length(ett));
}