From 283b0b9a59a3fa73db0924ecec4d0540cf9d6950 Mon Sep 17 00:00:00 2001 From: rwatson Date: Mon, 4 Sep 2000 21:46:27 +0000 Subject: 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. :-) --- sys/net/if_loop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index a3d3a3b..21f9695 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -181,7 +181,7 @@ contiguousfail: 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); } -- cgit v1.1