summaryrefslogtreecommitdiff
path: root/sys/kern/subr_autoconf.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-05-30 05:36:37 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-05-30 05:36:37 +0000
commit86428491f0dba017754b7e0facb5af6c571117cb (patch)
tree150293e9b090828cd8040220a7884b1d3c02a686 /sys/kern/subr_autoconf.c
parenteaee8f541d0d34268408a7d39a85d812459bc74b (diff)
the (root) stuff is ugly, so print "at root", so it looks more like
regular things. everyone here buys it, and i'm 90% sure miod will be ok with it
Diffstat (limited to 'sys/kern/subr_autoconf.c')
-rw-r--r--sys/kern/subr_autoconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_autoconf.c b/sys/kern/subr_autoconf.c
index a6080ab3ac9..f19835b4275 100644
--- a/sys/kern/subr_autoconf.c
+++ b/sys/kern/subr_autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_autoconf.c,v 1.51 2007/05/15 01:56:47 deraadt Exp $ */
+/* $OpenBSD: subr_autoconf.c,v 1.52 2007/05/30 05:36:36 deraadt Exp $ */
/* $NetBSD: subr_autoconf.c,v 1.21 1996/04/04 06:06:18 cgd Exp $ */
/*
@@ -366,7 +366,7 @@ config_attach(struct device *parent, void *match, void *aux, cfprint_t print)
device_ref(dev);
if (parent == ROOT)
- printf("%s (root)", dev->dv_xname);
+ printf("%s at root", dev->dv_xname);
else {
printf("%s at %s", dev->dv_xname, parent->dv_xname);
if (print)