diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-04-27 15:40:38 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-04-27 15:40:38 +0000 |
commit | 1801c18cbce7419f31cb23a1194537cf18f08767 (patch) | |
tree | 738ec5bec568883f36998ebd596805b95c2092fc | |
parent | 7c9798d265157ec4320222a22e0ad90899a286c8 (diff) |
correct in6_ifdetach(). free oia, not ia.
Lennart says there are more problems to go (I don't own openbsd-current laptop).
From: Lennart Augustsson <augustss@augustsson.net>
-rw-r--r-- | sys/netinet6/in6_ifattach.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/in6_ifattach.c b/sys/netinet6/in6_ifattach.c index e2d7111ffe7..d77e85fd413 100644 --- a/sys/netinet6/in6_ifattach.c +++ b/sys/netinet6/in6_ifattach.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6_ifattach.c,v 1.8 2000/04/17 04:44:50 itojun Exp $ */ +/* $OpenBSD: in6_ifattach.c,v 1.9 2000/04/27 15:40:37 itojun Exp $ */ /* $KAME: in6_ifattach.c,v 1.53 2000/04/16 14:01:42 itojun Exp $ */ /* @@ -850,7 +850,7 @@ in6_ifdetach(ifp) #endif } - free(ia, M_IFADDR); + free(oia, M_IFADDR); } /* cleanup multicast address kludge table, if there is any */ |