aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wccp.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-06-03 23:45:10 -0400
committerAnders Broman <a.broman58@gmail.com>2016-06-05 06:11:12 +0000
commit6a847b7e015bc2f97e5a8ef5735f02c1981c7dc7 (patch)
tree80390b296fb8a0e96c6a4cec19a56557b0307d7f /epan/dissectors/packet-wccp.c
parent7d7190695ce2ff269fdffb04e87139995cde21f4 (diff)
Fix expert_info errors found by new and improved checkhfs.pl.
Change-Id: I30f1b92ee438361c3bd58743f7d1ae8d5ffc96f0 Reviewed-on: https://code.wireshark.org/review/15718 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-wccp.c')
-rw-r--r--epan/dissectors/packet-wccp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-wccp.c b/epan/dissectors/packet-wccp.c
index 6a145c539c..9c9eb00e29 100644
--- a/epan/dissectors/packet-wccp.c
+++ b/epan/dissectors/packet-wccp.c
@@ -277,7 +277,7 @@ static expert_field ei_wccp_address_table_family_unknown = EI_INIT;
static expert_field ei_wccp_capability_element_length = EI_INIT;
static expert_field ei_wccp_port_fields_not_used = EI_INIT;
static expert_field ei_wccp_a_zero_not_c = EI_INIT;
-static expert_field ei_wccp_c_zero_not_a = EI_INIT;
+/* static expert_field ei_wccp_c_zero_not_a = EI_INIT; */
/*
* At
@@ -3548,7 +3548,9 @@ proto_register_wccp(void)
{ &ei_wccp_capability_element_length, { "wccp.capability_element.length.invalid", PI_PROTOCOL, PI_WARN, "Value Length invalid", EXPFILL }},
{ &ei_wccp_port_fields_not_used, { "wccp.port_fields_not_used", PI_PROTOCOL, PI_NOTE, "Ports fields not used", EXPFILL }},
{ &ei_wccp_a_zero_not_c, { "wccp.a_zero_not_c", PI_PROTOCOL, PI_WARN, "Error A is 0, but C is not", EXPFILL }},
+#if 0
{ &ei_wccp_c_zero_not_a, { "wccp.c_zero_not_a", PI_PROTOCOL, PI_WARN, "Error C is 0, but A is not", EXPFILL }},
+#endif
};
expert_module_t* expert_wccp;