diff options
author | 1997-07-27 01:34:34 +0000 | |
---|---|---|
committer | 1997-07-27 01:34:34 +0000 | |
commit | 3f35384c79529a23f0d738a65a3cf8627ab203b0 (patch) | |
tree | 66ecd339250650b1245adde8516598b8e5529d5b /usr.sbin/tcpdump/print-ether.c | |
parent | document bpb media types (diff) | |
download | wireguard-openbsd-3f35384c79529a23f0d738a65a3cf8627ab203b0.tar.xz wireguard-openbsd-3f35384c79529a23f0d738a65a3cf8627ab203b0.zip |
Ethernet v2 encapsulated Appletalk packets are phase 1, w/ LLAP header.
802.3/SNAP encapsulated Appletalk packets are phase 2, w/ no LLAP header.
Diffstat (limited to 'usr.sbin/tcpdump/print-ether.c')
-rw-r--r-- | usr.sbin/tcpdump/print-ether.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/print-ether.c b/usr.sbin/tcpdump/print-ether.c index 6e368a60fa4..c8b0f1e59bc 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: /home/cvs/src/usr.sbin/tcpdump/print-ether.c,v 1.6 1996/12/12 16:22:38 bitblt Exp $ (LBL)"; + "@(#) $Header: /home/cvs/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: |