Use if_printf().

This commit is contained in:
Matthew N. Dodd 2003-03-15 23:02:36 +00:00
parent 089b2f2ead
commit 59d776b808
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112298
2 changed files with 3 additions and 4 deletions

View file

@ -520,8 +520,7 @@ fddi_ifattach(ifp, bpf)
#endif
ifa = ifaddr_byindex(ifp->if_index);
if (ifa == NULL) {
printf("%s(): no lladdr for %s%d!\n", __FUNCTION__,
ifp->if_name, ifp->if_unit);
if_printf(ifp, "%s() no lladdr!\n", __func__);
return;
}

View file

@ -117,8 +117,8 @@ iso88025_ifattach(struct ifnet *ifp, int bpf)
ifa = ifaddr_byindex(ifp->if_index);
if (ifa == 0) {
printf("iso88025_ifattach: no lladdr!\n");
return;
if_printf(ifp, "%s() no lladdr!\n", __func__);
return;
}
sdl = (struct sockaddr_dl *)ifa->ifa_addr;