summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-12-27 18:04:28 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-12-27 18:04:28 +0000
commitfb95a4b3c8b94c38d07e78a31cf7c35c6ed7a55a (patch)
treeb91e2521b65c9d71b919602c89f14491ec398e7b /sys
parent446bf1767dc52b797bba28b3dd09044e618e3db2 (diff)
missing newline in autoconf pxe report; spotted by henning
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/amd64/amd64/autoconf.c4
-rw-r--r--sys/arch/i386/i386/autoconf.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/amd64/amd64/autoconf.c b/sys/arch/amd64/amd64/autoconf.c
index e842191d834..ad277d3cf11 100644
--- a/sys/arch/amd64/amd64/autoconf.c
+++ b/sys/arch/amd64/amd64/autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.c,v 1.23 2007/12/11 17:53:18 deraadt Exp $ */
+/* $OpenBSD: autoconf.c,v 1.24 2007/12/27 18:04:27 deraadt Exp $ */
/* $NetBSD: autoconf.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */
/*-
@@ -171,7 +171,7 @@ diskconf(void)
if (ifp) {
if_addgroup(ifp, "pxeboot");
#if defined(NFSCLIENT)
- printf("PXE boot MAC address %s, interface %s",
+ printf("PXE boot MAC address %s, interface %s\n",
ether_sprintf(bios_bootmac->mac), ifp->if_xname);
mountroot = nfs_mountroot; /* potentially */
bootdv = parsedisk(ifp->if_xname, strlen(ifp->if_xname),
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c
index 26ad97903c5..04374317e07 100644
--- a/sys/arch/i386/i386/autoconf.c
+++ b/sys/arch/i386/i386/autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.c,v 1.77 2007/12/11 17:53:16 deraadt Exp $ */
+/* $OpenBSD: autoconf.c,v 1.78 2007/12/27 18:04:27 deraadt Exp $ */
/* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */
/*-
@@ -206,7 +206,7 @@ diskconf(void)
if (ifp) {
if_addgroup(ifp, "pxeboot");
#if defined(NFSCLIENT)
- printf("PXE boot MAC address %s, interface %s",
+ printf("PXE boot MAC address %s, interface %s\n",
ether_sprintf(bios_bootmac->mac), ifp->if_xname);
mountroot = nfs_mountroot; /* potentially */
bootdv = parsedisk(ifp->if_xname, strlen(ifp->if_xname),