Make "4 NOP in a row" work again after changing the NOP name for TCP and IP

in revisions 34095 and 34097.

svn path=/trunk/; revision=34134
This commit is contained in:
Stig Bjørlykke 2010-09-16 12:29:22 +00:00
parent 0b44725f9f
commit 2d93bc5e9a
1 changed files with 3 additions and 2 deletions

View File

@ -1218,8 +1218,9 @@ dissect_ip_tcp_options(tvbuff_t *tvb, int offset, guint length,
proto_tree_add_text(opt_tree, tvb, offset, 1, "%s", name);
offset += 1;
if (nop_count == 4 && strcmp (name, "NOP") == 0) {
expert_add_info_format(pinfo, opt_item, PI_PROTOCOL, PI_WARN, "4 NOP in a row");
if (nop_count == 4 && strcmp (name, "No-Operation (NOP)") == 0) {
expert_add_info_format(pinfo, opt_item, PI_PROTOCOL, PI_WARN,
"4 NOP in a row - a router may have removed some options");
}
}
if (opt == eol)