summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2000-09-04 21:46:27 +0000
committerrwatson <rwatson@FreeBSD.org>2000-09-04 21:46:27 +0000
commit283b0b9a59a3fa73db0924ecec4d0540cf9d6950 (patch)
tree6f7a4849949fb63b192b85970d642a9e42a0fc46 /sys
parentebbd43d98f524ff806b0fd99adad4122d98952b0 (diff)
downloadFreeBSD-src-283b0b9a59a3fa73db0924ecec4d0540cf9d6950.zip
FreeBSD-src-283b0b9a59a3fa73db0924ecec4d0540cf9d6950.tar.gz
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. :-)
Diffstat (limited to 'sys')
-rw-r--r--sys/net/if_loop.c2
1 files changed, 1 insertions, 1 deletions
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);
}
OpenPOWER on IntegriCloud