aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-igap.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-09-23 21:46:31 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-09-23 21:46:31 +0000
commit0ff5638f37a1de5d061106b37930c6767bc445de (patch)
tree8fe06c6ee8fe5365b0a2eaa3708fb6d431ca59cb /epan/dissectors/packet-igap.c
parente84f210167f604a4c40e42774ebd1e80c1a23711 (diff)
Replace blurbs that match the name (case insensitive) with NULL.
svn path=/trunk/; revision=34227
Diffstat (limited to 'epan/dissectors/packet-igap.c')
-rw-r--r--epan/dissectors/packet-igap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-igap.c b/epan/dissectors/packet-igap.c
index 533252cb33..bf0662c6d2 100644
--- a/epan/dissectors/packet-igap.c
+++ b/epan/dissectors/packet-igap.c
@@ -151,7 +151,7 @@ dissect_igap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int off
type = tvb_get_guint8(tvb, offset);
if (check_col(pinfo->cinfo, COL_INFO)) {
- col_add_str(pinfo->cinfo, COL_INFO,
+ col_add_str(pinfo->cinfo, COL_INFO,
val_to_str(type, igap_types, "Unknown Type: 0x%02x"));
}
proto_tree_add_uint(tree, hf_type, tvb, offset, 1, type);
@@ -168,7 +168,7 @@ dissect_igap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int off
proto_tree_add_item(tree, hf_maddr, tvb, offset, 4, FALSE);
offset += 4;
- proto_tree_add_uint(tree, hf_version, tvb, offset, 1,
+ proto_tree_add_uint(tree, hf_version, tvb, offset, 1,
tvb_get_guint8(tvb, offset));
offset += 1;
@@ -310,7 +310,7 @@ proto_register_igap(void)
{ &hf_account,
{ "User Account", "igap.account", FT_STRING, BASE_NONE,
- NULL, 0, "User account", HFILL }
+ NULL, 0, NULL, HFILL }
}
};