diff options
author | 2018-01-01 19:41:01 +0000 | |
---|---|---|
committer | 2018-01-01 19:41:01 +0000 | |
commit | b4c86ee36938748af6d33978e4fcc2562f24f658 (patch) | |
tree | 2d84ee6664dc93d24cc4a2086d7a76fa66524eb2 /lib | |
parent | Make lld respect ALIGN directives on output sections even with -r. Fixes (diff) | |
download | wireguard-openbsd-b4c86ee36938748af6d33978e4fcc2562f24f658.tar.xz wireguard-openbsd-b4c86ee36938748af6d33978e4fcc2562f24f658.zip |
Fix wrong ETHERTYPE_IPV6
OK jca@ kettenis@ job@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpcap/ethertype.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpcap/ethertype.h b/lib/libpcap/ethertype.h index f2ba6f2a988..2c44f30a375 100644 --- a/lib/libpcap/ethertype.h +++ b/lib/libpcap/ethertype.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ethertype.h,v 1.8 2014/04/11 04:08:58 lteo Exp $ */ +/* $OpenBSD: ethertype.h,v 1.9 2018/01/01 19:41:01 denis Exp $ */ /* $NetBSD: ethertype.h,v 1.2 1995/03/06 11:38:17 mycroft Exp $ */ /* @@ -76,7 +76,7 @@ #define ETHERTYPE_8021Q 0x8100 #endif #ifndef ETHERTYPE_IPV6 -#define ETHERTYPE_IPV6 0x80f3 +#define ETHERTYPE_IPV6 0x86dd #endif #ifndef ETHERTYPE_LOOPBACK #define ETHERTYPE_LOOPBACK 0x9000 |