aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ospf.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-04-08 13:41:30 +0000
committerBill Meier <wmeier@newsguy.com>2009-04-08 13:41:30 +0000
commit321506c076b5d2ed1cc4cc5c74569093b3e1aca0 (patch)
tree8452f326fe422f58ce23b34cc250db27fd0082de /epan/dissectors/packet-ospf.c
parent0beccd173fb12cab957bfbf7e170b51d39b259e4 (diff)
(Trivial) Fix some spelling & etc in comments
svn path=/trunk/; revision=27996
Diffstat (limited to 'epan/dissectors/packet-ospf.c')
-rw-r--r--epan/dissectors/packet-ospf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ospf.c b/epan/dissectors/packet-ospf.c
index 0d3380a60d..8908427157 100644
--- a/epan/dissectors/packet-ospf.c
+++ b/epan/dissectors/packet-ospf.c
@@ -2844,7 +2844,7 @@ dissect_ospf_v2_lsa(tvbuff_t *tvb, int offset, proto_tree *tree,
offset += 4;
options = tvb_get_guint8(tvb, offset);
- if (options & 0x80) { /* check wether or not E bit is set */
+ if (options & 0x80) { /* check whether or not E bit is set */
proto_tree_add_text(ospf_lsa_tree, tvb, offset, 1,
"External Type: Type 2 (metric is larger than any other link state path)");
} else {
@@ -2867,7 +2867,7 @@ dissect_ospf_v2_lsa(tvbuff_t *tvb, int offset, proto_tree *tree,
/* TOS-specific information, if any */
while (offset < end_offset) {
options = tvb_get_guint8(tvb, offset);
- if (options & 0x80) { /* check wether or not E bit is set */
+ if (options & 0x80) { /* check whether or not E bit is set */
proto_tree_add_text(ospf_lsa_tree, tvb, offset, 1,
"External Type: Type 2 (metric is larger than any other link state path)");
} else {