]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-atm.c
whitespace changes
[tcpdump] / print-atm.c
index 0327b0d48138b8453c6f9c7f33b1d40527eae19d..f75f8ab65965ee8b4d6a9850e68f3ea26367da32 100644 (file)
@@ -261,7 +261,7 @@ sig_print(const u_char *p, int caplen)
        }
        if (p[PROTO_POS] == Q2931) {
                /*
-                * protocol:Q.2931 for User to Network Interface 
+                * protocol:Q.2931 for User to Network Interface
                 * (UNI 3.1) signalling
                 */
                printf("Q.2931");
@@ -353,7 +353,7 @@ struct oam_fm_ais_rdi_t {
     u_int8_t unused[28];
 };
 
-int 
+int
 oam_print (const u_char *p, u_int length, u_int hec) {
 
     u_int32_t cell_header;
@@ -444,7 +444,7 @@ oam_print (const u_char *p, u_int length, u_int hec) {
     cksum = EXTRACT_16BITS(p + OAM_CELLTYPE_FUNCTYPE_LEN + OAM_FUNCTION_SPECIFIC_LEN)
         & OAM_CRC10_MASK;
     cksum_shouldbe = verify_crc10_cksum(0, p, OAM_PAYLOAD_LEN);
-    
+
     printf("\n\tcksum 0x%03x (%scorrect)",
            cksum,
            cksum_shouldbe == 0 ? "" : "in");