[glibc] hurd: Fix ETH_P_PUP
Samuel Thibault via Glibc-cvs <[email protected]> Tue, 16 Jun 2026 23:27:17 +0000 (GMT)
| Newsgroups | gmane.comp.lib.glibc.cvs |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=145b53b22a6e68c5965e90384c4629515584363c commit 145b53b22a6e68c5965e90384c4629515584363c Author: Samuel Thibault <[email protected]> Date: Wed Jun 17 01:24:17 2026 +0200 hurd: Fix ETH_P_PUP According to IANA, PUP is 0200 Diff: --- sysdeps/mach/hurd/net/if_ether.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sysdeps/mach/hurd/net/if_ether.h b/sysdeps/mach/hurd/net/if_ether.h index 91d326b7d7..88b8d03f35 100644 --- a/sysdeps/mach/hurd/net/if_ether.h +++ b/sysdeps/mach/hurd/net/if_ether.h @@ -34,8 +34,7 @@ */ #define ETH_P_LOOP 0x0060 /* Ethernet Loopback packet */ -#define ETH_P_ECHO 0x0200 /* Ethernet Echo packet */ -#define ETH_P_PUP 0x0400 /* Xerox PUP packet */ +#define ETH_P_PUP 0x0200 /* Xerox PUP packet */ #define ETH_P_IP 0x0800 /* Internet Protocol packet */ #define ETH_P_X25 0x0805 /* CCITT X.25 */ #define ETH_P_ARP 0x0806 /* Address Resolution packet */