summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordenny <denny@cvs.openbsd.org>1997-07-27 01:34:35 +0000
committerdenny <denny@cvs.openbsd.org>1997-07-27 01:34:35 +0000
commit824e81539785056576bffe636423a72e35dda0ac (patch)
treec3a6bd4f7eb3d98d23224558a1296b146c095ed1
parent1ca8ff3290ecff606a36f949950d9b7572c9ccf3 (diff)
Ethernet v2 encapsulated Appletalk packets are phase 1, w/ LLAP header.
802.3/SNAP encapsulated Appletalk packets are phase 2, w/ no LLAP header.
-rw-r--r--usr.sbin/tcpdump/print-ether.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/print-ether.c b/usr.sbin/tcpdump/print-ether.c
index ab033274ec0..7d881e01317 100644
--- a/usr.sbin/tcpdump/print-ether.c
+++ b/usr.sbin/tcpdump/print-ether.c
@@ -20,7 +20,7 @@
*/
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ether.c,v 1.6 1996/12/12 16:22:38 bitblt Exp $ (LBL)";
+ "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ether.c,v 1.7 1997/07/27 01:34:34 denny Exp $ (LBL)";
#endif
#include <sys/param.h>
@@ -178,7 +178,7 @@ ether_encap_print(u_short ethertype, const u_char *p,
case ETHERTYPE_ATALK:
if (vflag)
fputs("et1 ", stdout);
- atalk_print(p, length);
+ atalk_print_llap(p, length);
return (1);
case ETHERTYPE_AARP: