aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-icmpv6.c
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-07-03 01:29:04 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2016-07-03 06:24:15 +0000
commit783bb5b0c4a3419f446ad313e8d1553c5c69b3fa (patch)
tree044636481b5279e42a29f8022bc9768546a7a3ee /epan/dissectors/packet-icmpv6.c
parent14642616664d879e7aa74c8f4ab869f877125c7a (diff)
Fix indentation
Change-Id: I41b9cf4b7e3efbee48174fe0151ca94cb0bbc425 Reviewed-on: https://code.wireshark.org/review/16254 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
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;