diff options
author | 2000-01-18 05:41:33 +0000 | |
---|---|---|
committer | 2000-01-18 05:41:33 +0000 | |
commit | 648a7bba2b7dd3be1e24e792031ead8c33a745c5 (patch) | |
tree | 949ca31d4f125de67c7f0114e5057138abc14da6 | |
parent | print IPv6 multicast groups on -ia. (diff) | |
download | wireguard-openbsd-648a7bba2b7dd3be1e24e792031ead8c33a745c5.tar.xz wireguard-openbsd-648a7bba2b7dd3be1e24e792031ead8c33a745c5.zip |
possible workaround to NetBSD PR 9189 (panic on sparc). not sure if it's right.
-rw-r--r-- | sys/netinet6/icmp6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/icmp6.h b/sys/netinet6/icmp6.h index 45532bb0c57..fcce316623c 100644 --- a/sys/netinet6/icmp6.h +++ b/sys/netinet6/icmp6.h @@ -1,4 +1,4 @@ -/* $OpenBSD: icmp6.h,v 1.3 2000/01/02 04:52:26 itojun Exp $ */ +/* $OpenBSD: icmp6.h,v 1.4 2000/01/18 05:41:33 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -303,7 +303,7 @@ struct icmp6_namelookup { */ struct icmp6_nodeinfo { struct icmp6_hdr icmp6_ni_hdr; - u_int64_t icmp6_ni_nonce; + u_int8_t icmp6_ni_nonce[8]; /* could be followed by reply data */ }; |