Make expert info text less verbose for missing ICMP response - no point in including frame number

Change-Id: I47ca8159c0716cb49da7ff77b1087cf37babe97e
Reviewed-on: https://code.wireshark.org/review/4059
Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
This commit is contained in:
Martin Mathieson 2014-09-10 13:08:08 +01:00
parent f9d4e0a815
commit c6c8dc2b42
1 changed files with 1 additions and 2 deletions

View File

@ -1032,8 +1032,7 @@ static icmp_transaction_t *transaction_start(packet_info * pinfo,
/* Expert info. TODO: add to _icmp_transaction_t type and sequence number
so can report here (and in taps) */
expert_add_info_format(pinfo, it, &ei_icmp_resp_not_found,
"No response seen to ICMP request in frame %u",
pinfo->fd->num);
"No response seen to ICMP request");
}
return NULL;