summaryrefslogtreecommitdiff
path: root/sys/netinet6
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2006-05-27 20:00:38 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2006-05-27 20:00:38 +0000
commita86bb489d0e511fe3fc0c7ab7c53e92600a95477 (patch)
treea35df6be5582e13f2b55556676876fe658eb9ed2 /sys/netinet6
parent6f895ca1ebf272c3fb5974131464a4b457022d23 (diff)
Fix obvious error in code that is currently not compiled.
Diffstat (limited to 'sys/netinet6')
-rw-r--r--sys/netinet6/ip6_input.c4
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);