Previous commit didn't work; this time really fix it.
This commit is contained in:
parent
9ec4c09af1
commit
c38d75f43d
14
sys/net/if.c
14
sys/net/if.c
@ -51,11 +51,9 @@
|
||||
#include <sys/syslog.h>
|
||||
#include <sys/sysctl.h>
|
||||
|
||||
#include <net/ethernet.h>
|
||||
#include <net/if.h>
|
||||
#include <net/if_arp.h>
|
||||
#include <net/if_dl.h>
|
||||
#include <net/if_types.h>
|
||||
#include <net/radix.h>
|
||||
#include <net/route.h>
|
||||
|
||||
@ -237,18 +235,6 @@ if_detach(ifp)
|
||||
s = splnet();
|
||||
if_down(ifp);
|
||||
|
||||
/*
|
||||
* Do any type-specific detach operation
|
||||
*/
|
||||
switch (ifp->if_type) {
|
||||
case IFT_ETHER:
|
||||
if (ng_ether_detach_p != NULL)
|
||||
(*ng_ether_detach_p)(ifp);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
/*
|
||||
* Remove address from ifnet_addrs[] and maybe decrement if_index.
|
||||
* Clean up all addresses.
|
||||
|
Loading…
Reference in New Issue
Block a user