X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/3b8786edf427763293c28f11a3a644894d574336..2a9f4573968c6771b928a34a7de536897b2563c7:/print-ether.c diff --git a/print-ether.c b/print-ether.c index cb048862..87b77d3f 100644 --- a/print-ether.c +++ b/print-ether.c @@ -20,7 +20,7 @@ */ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.93 2004-06-12 16:32:56 hannes Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.95.2.1 2005-04-25 17:57:15 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -186,7 +186,7 @@ ether_encap_print(u_short ether_type, const u_char *p, switch (ether_type) { case ETHERTYPE_IP: - ip_print(p, length); + ip_print(gndo, p, length); return (1); #ifdef INET6 @@ -313,9 +313,11 @@ ether_encap_print(u_short ether_type, const u_char *p, } } + /* * Local Variables: - * c-style: bsd + * c-style: whitesmith + * c-basic-offset: 8 * End: */