diff options
author | 2006-05-27 20:00:37 +0000 | |
---|---|---|
committer | 2006-05-27 20:00:37 +0000 | |
commit | fd3bcbd118a00931f229e8ae050e638ba3d3206a (patch) | |
tree | 5b93b455a2f7eea4a1380c1e423195a9ba58e5b6 | |
parent | if the pid given to imsg_create is 0, use the pid sored in the ibuf (which (diff) | |
download | wireguard-openbsd-fd3bcbd118a00931f229e8ae050e638ba3d3206a.tar.xz wireguard-openbsd-fd3bcbd118a00931f229e8ae050e638ba3d3206a.zip |
Fix obvious error in code that is currently not compiled.
-rw-r--r-- | sys/netinet6/ip6_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index 92c0fe79cc1..96ff66c17b4 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_input.c,v 1.65 2006/05/24 18:43:10 thib Exp $ */ +/* $OpenBSD: ip6_input.c,v 1.66 2006/05/27 20:00:37 claudio Exp $ */ /* $KAME: ip6_input.c,v 1.188 2001/03/29 05:34:31 itojun Exp $ */ /* @@ -901,7 +901,7 @@ ip6_savecontrol(in6p, mp, ip6, m) # define in6p_flags inp_flags #ifdef SO_TIMESTAMP - if (in6p->in6p_socket->so_options & SO_TIMESTAMP) { + if (in6p->inp_socket->so_options & SO_TIMESTAMP) { struct timeval tv; microtime(&tv); |