aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-icmpv6.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-icmpv6.c')
-rw-r--r--epan/dissectors/packet-icmpv6.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/epan/dissectors/packet-icmpv6.c b/epan/dissectors/packet-icmpv6.c
index c84a02c4e7..041a932915 100644
--- a/epan/dissectors/packet-icmpv6.c
+++ b/epan/dissectors/packet-icmpv6.c
@@ -1261,22 +1261,22 @@ static icmp_transaction_t *transaction_start(packet_info *pinfo, proto_tree *tre
if (icmpv6_trans == NULL) {
if (pinfo->dst.type == AT_IPv6 &&
in6_is_addr_multicast((const struct e_in6_addr *)pinfo->dst.data)) {
- /* XXX We should support multicast echo requests, but we don't currently */
- /* Note the multicast destination and skip transaction tracking */
- col_append_str(pinfo->cinfo, COL_INFO, " (multicast)");
+ /* XXX We should support multicast echo requests, but we don't currently */
+ /* Note the multicast destination and skip transaction tracking */
+ col_append_str(pinfo->cinfo, COL_INFO, " (multicast)");
} else if (PINFO_FD_VISITED(pinfo)) {
- /* No response found - add field and expert info */
- it = proto_tree_add_item(tree, hf_icmpv6_no_resp, NULL, 0, 0,
- ENC_NA);
- PROTO_ITEM_SET_GENERATED(it);
-
- col_append_fstr(pinfo->cinfo, COL_INFO, " (no response found!)");
-
- /* 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_icmpv6_resp_not_found,
- "No response seen to ICMPv6 request in frame %u",
- pinfo->num);
+ /* No response found - add field and expert info */
+ it = proto_tree_add_item(tree, hf_icmpv6_no_resp, NULL, 0, 0,
+ ENC_NA);
+ PROTO_ITEM_SET_GENERATED(it);
+
+ col_append_fstr(pinfo->cinfo, COL_INFO, " (no response found!)");
+
+ /* 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_icmpv6_resp_not_found,
+ "No response seen to ICMPv6 request in frame %u",
+ pinfo->num);
}
return NULL;