diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-09-21 08:51:50 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-09-21 08:51:50 +0200 |
commit | c0c9092f758d3734fd6bb3f63c6cd0c4fd464a51 (patch) | |
tree | 8d0b6b7158c7b760798302ba4f8bb373f60ca2da | |
parent | ffd0b295d96aa58d65e642d7519f4d8c33acb3f0 (diff) | |
download | glibc-c0c9092f758d3734fd6bb3f63c6cd0c4fd464a51.zip glibc-c0c9092f758d3734fd6bb3f63c6cd0c4fd464a51.tar.gz glibc-c0c9092f758d3734fd6bb3f63c6cd0c4fd464a51.tar.bz2 |
hurd: Use IF_NAMESIZE rather than IFNAMSIZ
The latter is not available without __USE_MISC.
-rw-r--r-- | sysdeps/mach/hurd/net/route.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/net/route.h b/sysdeps/mach/hurd/net/route.h index 7bbd94f..e7c276e 100644 --- a/sysdeps/mach/hurd/net/route.h +++ b/sysdeps/mach/hurd/net/route.h @@ -68,7 +68,7 @@ struct in6_rtmsg typedef struct ifrtreq { - char ifname[IFNAMSIZ]; + char ifname[IF_NAMESIZE]; in_addr_t rt_dest; in_addr_t rt_mask; in_addr_t rt_gateway; |