Fix tinderbox; ng_ether needs to see if_findmulti().

This commit is contained in:
Bruce M Simpson 2007-03-20 03:15:43 +00:00
parent aa727a5535
commit 5896d12465
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=167732
2 changed files with 3 additions and 3 deletions

View File

@ -108,8 +108,6 @@ static void if_attachdomain(void *);
static void if_attachdomain1(struct ifnet *);
static void if_purgemaddrs(struct ifnet *);
static int ifconf(u_long, caddr_t);
static struct ifmultiaddr *
if_findmulti(struct ifnet *, struct sockaddr *);
static void if_freemulti(struct ifmultiaddr *);
static void if_grow(void);
static void if_init(void *);
@ -2170,7 +2168,7 @@ if_allmulti(struct ifnet *ifp, int onswitch)
return (if_setflag(ifp, IFF_ALLMULTI, 0, &ifp->if_amcount, onswitch));
}
static struct ifmultiaddr *
struct ifmultiaddr *
if_findmulti(struct ifnet *ifp, struct sockaddr *sa)
{
struct ifmultiaddr *ifma;

View File

@ -670,6 +670,8 @@ void if_delmulti_ifma(struct ifmultiaddr *);
void if_detach(struct ifnet *);
void if_purgeaddrs(struct ifnet *);
void if_down(struct ifnet *);
struct ifmultiaddr *
if_findmulti(struct ifnet *, struct sockaddr *);
void if_free(struct ifnet *);
void if_free_type(struct ifnet *, u_char);
void if_initname(struct ifnet *, const char *, int);