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:
rwatson 2000-09-04 21:46:27 +00:00
parent a3c55f36fa
commit 2cb3187db7

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);
}