summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2006-07-20 19:52:08 +0000
committermiod <miod@openbsd.org>2006-07-20 19:52:08 +0000
commit4f7fa9b2d5697a09df2e392e4de42b844acf7d0a (patch)
tree335756bfba8b7c9c72345d7e7923ddc0cb9930c2
parentHere cometh the blinkenlichten on VAXens. (diff)
downloadwireguard-openbsd-4f7fa9b2d5697a09df2e392e4de42b844acf7d0a.tar.xz
wireguard-openbsd-4f7fa9b2d5697a09df2e392e4de42b844acf7d0a.zip
Conform to the party's line when printing unconfigured devices.
-rw-r--r--sys/arch/vax/vax/ibus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/vax/ibus.c b/sys/arch/vax/vax/ibus.c
index cec71265928..8793268ffaa 100644
--- a/sys/arch/vax/vax/ibus.c
+++ b/sys/arch/vax/vax/ibus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ibus.c,v 1.6 2006/07/20 19:08:15 miod Exp $ */
+/* $OpenBSD: ibus.c,v 1.7 2006/07/20 19:52:08 miod Exp $ */
/* $NetBSD: ibus.c,v 1.7 2001/02/04 20:36:32 ragge Exp $ */
/*
* Copyright (c) 1999 Ludd, University of Lule}, Sweden.
@@ -57,7 +57,7 @@ ibus_print(void *aux, const char *name)
struct bp_conf *bp = aux;
if (name)
- printf("device %s at %s", bp->type, name);
+ printf("%s at %s", bp->type, name);
return (UNCONF);
}