o Add missing "\n" to warning output in netinet/if_loop.c, when an

unsupported address family is used on localhost interface.

    looutput: af=0 unexpected

  Speculation as to the reasons for my seeing this error are welcome, of
  course.  :-)
This commit is contained in:
Robert Watson 2000-09-04 21:46:27 +00:00
parent 8cae7cc3d6
commit 71582bf515
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=65454

View file

@ -181,7 +181,7 @@ looutput(ifp, m, dst, rt)
case AF_APPLETALK:
break;
default:
printf("looutput: af=%d unexpected", dst->sa_family);
printf("looutput: af=%d unexpected\n", dst->sa_family);
m_freem(m);
return (EAFNOSUPPORT);
}