Clean up indentation.
authorGuy Harris <guy@alum.mit.edu>
Thu, 23 Dec 2010 21:22:55 +0000 (21:22 -0000)
committerGuy Harris <guy@alum.mit.edu>
Thu, 23 Dec 2010 21:22:55 +0000 (21:22 -0000)
svn path=/trunk/; revision=35257

epan/dissectors/packet-ip.c

index 27560c7e08a6fc6a3024f07a5ba1c089e0d289dc..fc21ee9d43c39fc05270d1b5d0278e2a32ad03e2 100644 (file)
@@ -1666,16 +1666,16 @@ dissect_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
   if (ip_defragment && (iph->ip_off & (IP_MF|IP_OFFSET)) &&
       tvb_bytes_exist(tvb, offset, pinfo->iplen - pinfo->iphdrlen) &&
       ipsum == 0) {
-               ipfd_head = fragment_add_check(tvb, offset, pinfo,
-                            iph->ip_p ^ iph->ip_id ^ src32 ^ dst32,
-                            ip_fragment_table,
-                            ip_reassembled_table,
-                            (iph->ip_off & IP_OFFSET)*8,
-                            pinfo->iplen - pinfo->iphdrlen,
-                            iph->ip_off & IP_MF);
+    ipfd_head = fragment_add_check(tvb, offset, pinfo,
+                                   iph->ip_p ^ iph->ip_id ^ src32 ^ dst32,
+                                   ip_fragment_table,
+                                   ip_reassembled_table,
+                                   (iph->ip_off & IP_OFFSET)*8,
+                                   pinfo->iplen - pinfo->iphdrlen,
+                                   iph->ip_off & IP_MF);
 
     next_tvb = process_reassembled_data(tvb, offset, pinfo, "Reassembled IPv4",
-      ipfd_head, &ip_frag_items, &update_col_info, ip_tree);
+    ipfd_head, &ip_frag_items, &update_col_info, ip_tree);
   } else {
     /* If this is the first fragment, dissect its contents, otherwise
        just show it as a fragment.