]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Ethernet: Rename a printer
authorFrancois-Xavier Le Bail <[email protected]>
Tue, 28 Apr 2020 13:53:34 +0000 (15:53 +0200)
committerFrancois-Xavier Le Bail <[email protected]>
Wed, 29 Apr 2020 16:59:50 +0000 (18:59 +0200)
Rename ether_print_common() to ether_common_print(), with _print
suffix like in most similar cases.

Moreover:
Fix indent.

print-ether.c

index eed66ace9f9642e96f0f530b051774a7aab9abb3..299c20137aeacf8b1a72cead909d8ff16179de60 100644 (file)
@@ -133,7 +133,7 @@ ether_type_print(netdissect_options *ndo, uint16_t type)
  * printing Ethernet header information (such as a LANE ID for ATM LANE).
  */
 static u_int
-ether_print_common(netdissect_options *ndo, const u_char *p, u_int length,
+ether_common_print(netdissect_options *ndo, const u_char *p, u_int length,
     u_int caplen,
     void (*print_switch_tag)(netdissect_options *ndo, const u_char *),
     u_int switch_tag_len,
@@ -380,7 +380,7 @@ ether_switch_tag_print(netdissect_options *ndo, const u_char *p, u_int length,
     void (*print_switch_tag)(netdissect_options *, const u_char *),
     u_int switch_tag_len)
 {
-       return (ether_print_common(ndo, p, length, caplen, print_switch_tag,
+       return (ether_common_print(ndo, p, length, caplen, print_switch_tag,
                                   switch_tag_len, NULL, NULL));
 }
 
@@ -399,8 +399,8 @@ ether_print(netdissect_options *ndo,
            const u_char *encap_header_arg)
 {
        ndo->ndo_protocol = "ether";
-       return (ether_print_common(ndo, p, length, caplen, NULL, 0,
-                                   print_encap_header, encap_header_arg));
+       return (ether_common_print(ndo, p, length, caplen, NULL, 0,
+                                  print_encap_header, encap_header_arg));
 }
 
 /*