diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2007-07-21 08:29:30 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2007-07-21 08:29:30 +0000 |
commit | 2cbd3175822ac04fb7cb5a19fca899f351d8e604 (patch) | |
tree | 0a4fea13e28a73180fade69709554d52cff3d0d6 | |
parent | c3518fd4cbee0dd319ec3af6f55ce2b4858b5464 (diff) |
s/ETHERTYPE_EAPOL/ETHERTYPE_PAE/ to be in line with src/sys/net/ethertypes.h
also, ETHERTYPE_PAE is the name used in the 802.1X standard.
pointed out by jsg@
-rw-r--r-- | usr.sbin/tcpdump/ethertype.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/tcpdump/ethertype.h b/usr.sbin/tcpdump/ethertype.h index 556467c32de..65ae5bf2375 100644 --- a/usr.sbin/tcpdump/ethertype.h +++ b/usr.sbin/tcpdump/ethertype.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ethertype.h,v 1.11 2006/03/28 15:48:33 reyk Exp $ */ +/* $OpenBSD: ethertype.h,v 1.12 2007/07/21 08:29:29 damien Exp $ */ /* * Copyright (c) 1993, 1994, 1996 @@ -20,7 +20,7 @@ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * @(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/ethertype.h,v 1.11 2006/03/28 15:48:33 reyk Exp $ (LBL) + * @(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/ethertype.h,v 1.12 2007/07/21 08:29:29 damien Exp $ (LBL) */ /* @@ -126,8 +126,8 @@ #ifndef ETHERTYPE_JUMBO #define ETHERTYPE_JUMBO 0x8870 #endif -#ifndef ETHERTYPE_EAPOL -#define ETHERTYPE_EAPOL 0x888e +#ifndef ETHERTYPE_PAE +#define ETHERTYPE_PAE 0x888e #endif #ifndef ETHERTYPE_LLDP #define ETHERTYPE_LLDP 0x88cc |