aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-igmp.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2006-01-05 13:01:08 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2006-01-05 13:01:08 +0000
commitda69e3f6ed165ddc7feefcb6a1054e308330c7c7 (patch)
tree2ec913d2de0cecf04e92c11547a05cd175a5f66a /epan/dissectors/packet-igmp.c
parent3fb5d7c031e9e49001d910feaa1b7639987eea2f (diff)
Bill Meier:
Spelling fixes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16956 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-igmp.c')
-rw-r--r--epan/dissectors/packet-igmp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-igmp.c b/epan/dissectors/packet-igmp.c
index dcc31cfdd0..9b76e207d4 100644
--- a/epan/dissectors/packet-igmp.c
+++ b/epan/dissectors/packet-igmp.c
@@ -126,7 +126,7 @@ static int hf_access_key = -1;
static int hf_max_resp = -1;
static int hf_max_resp_exp = -1;
static int hf_max_resp_mant = -1;
-static int hf_supress = -1;
+static int hf_suppress = -1;
static int hf_qrv = -1;
static int hf_qqic = -1;
static int hf_num_src = -1;
@@ -243,8 +243,8 @@ static const value_string vs_reply_code[] = {
};
static const true_false_string tfs_s = {
- "SUPRESS router side processing",
- "Do not supress router side processing"
+ "SUPPRESS router side processing",
+ "Do not suppress router side processing"
};
#define IGMP_V3_MODE_IS_INCLUDE 1
@@ -428,7 +428,7 @@ dissect_v3_sqrv_bits(tvbuff_t *tvb, proto_tree *parent_tree, int offset)
tree = proto_item_add_subtree(item, ett_sqrv_bits);
/* S flag */
- proto_tree_add_boolean(tree, hf_supress, tvb, offset, 1, bits);
+ proto_tree_add_boolean(tree, hf_suppress, tvb, offset, 1, bits);
/* QRV */
proto_tree_add_uint(tree, hf_qrv, tvb, offset, 1, bits);
offset += 1;
@@ -945,9 +945,9 @@ proto_register_igmp(void)
{ "Max Resp Time", "igmp.max_resp", FT_UINT8, BASE_DEC,
NULL, 0, "Max Response Time", HFILL }},
- { &hf_supress,
+ { &hf_suppress,
{ "S", "igmp.s", FT_BOOLEAN, 8,
- TFS(&tfs_s), IGMP_V3_S, "Supress Router Side Processing", HFILL }},
+ TFS(&tfs_s), IGMP_V3_S, "Suppress Router Side Processing", HFILL }},
{ &hf_qrv,
{ "QRV", "igmp.qrv", FT_UINT8, BASE_DEC,