aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ypbind.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-01-31 18:31:28 +0000
committerBill Meier <wmeier@newsguy.com>2013-01-31 18:31:28 +0000
commitd3a7f4b817160718d31eb3dd3b0b9a2029055c73 (patch)
treecf0332af039331f5b57c4d4403bca40f268fada5 /epan/dissectors/packet-ypbind.c
parentc439b805e20dd9dba744b3f7216c970c3591592e (diff)
Use '#if 0 ... #endif' rather than /** ... **/ to comment out
unused hf[] entries (which I should have done in the first place). svn path=/trunk/; revision=47390
Diffstat (limited to 'epan/dissectors/packet-ypbind.c')
-rw-r--r--epan/dissectors/packet-ypbind.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ypbind.c b/epan/dissectors/packet-ypbind.c
index 80d6ccea68..4691f937a3 100644
--- a/epan/dissectors/packet-ypbind.c
+++ b/epan/dissectors/packet-ypbind.c
@@ -183,10 +183,11 @@ proto_register_ypbind(void)
"Response Type", "ypbind.resp_type", FT_UINT32, BASE_DEC,
VALS(resp_type_vals), 0, NULL, HFILL }},
-/** { &hf_ypbind_error, {
+#if 0
+ { &hf_ypbind_error, {
"Error", "ypbind.error", FT_UINT32, BASE_DEC,
VALS(error_vals), 0, "YPBIND Error code", HFILL }},
-**/
+#endif
{ &hf_ypbind_addr, {
"IP Addr", "ypbind.addr", FT_IPv4, BASE_NONE,
NULL, 0, "IP Address of server", HFILL }},