Skip to content

Commit

Permalink
in6_ifdetach is not necessary for bsdi
Browse files Browse the repository at this point in the history
(I'm not sure if the condition "_BSDI_VERSION >= 199802" is really necessary.
 can we really ignore bsdi3?)
  • Loading branch information
jinmei committed Dec 5, 2000
1 parent 663bc00 commit c04f319
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kame/sys/netinet6/in6.c
@@ -1,4 +1,4 @@
/* $KAME: in6.c,v 1.118 2000/12/05 01:40:07 itojun Exp $ */
/* $KAME: in6.c,v 1.119 2000/12/05 15:57:51 jinmei Exp $ */

/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
Expand Down Expand Up @@ -1170,7 +1170,9 @@ in6_purgeif(ifp)
in6_purgeaddr(ifa, ifp);
}

#if !(defined(__bsdi__) && _BSDI_VERSION >= 199802)
in6_ifdetach(ifp);
#endif
}

/*
Expand Down

0 comments on commit c04f319

Please sign in to comment.