From 783bb5b0c4a3419f446ad313e8d1553c5c69b3fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Sun, 3 Jul 2016 01:29:04 +0100 Subject: Fix indentation Change-Id: I41b9cf4b7e3efbee48174fe0151ca94cb0bbc425 Reviewed-on: https://code.wireshark.org/review/16254 Reviewed-by: Michael Mann Petri-Dish: Michael Mann Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte --- epan/dissectors/packet-icmpv6.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'epan/dissectors/packet-icmpv6.c') 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; -- cgit v1.2.3