diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-06-07 06:04:46 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-06-07 06:04:46 +0000 |
commit | fc6a0edb7b93b06c097cd48b3a4d5b148c2207c3 (patch) | |
tree | afa0524d2cf354e653c52efe3e6e6871c0bdf691 /sys/dev | |
parent | 02cbe2b174b6482978525a3c6eac82089b038409 (diff) |
remove extra space before ether address for Lucent wi boards
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/if_wi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/if_wi.c b/sys/dev/ic/if_wi.c index 2095c36de33..863d1b6f92d 100644 --- a/sys/dev/ic/if_wi.c +++ b/sys/dev/ic/if_wi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi.c,v 1.3 2001/06/07 04:49:07 mickey Exp $ */ +/* $OpenBSD: if_wi.c,v 1.4 2001/06/07 06:04:45 millert Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -120,7 +120,7 @@ u_int32_t widebug = WIDEBUG; #if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.3 2001/06/07 04:49:07 mickey Exp $"; + "$OpenBSD: if_wi.c,v 1.4 2001/06/07 06:04:45 millert Exp $"; #endif /* lint */ #ifdef foo @@ -183,7 +183,7 @@ wi_attach(sc) printf(": "); wi_get_id(sc); - printf(" address %s", ether_sprintf(sc->arpcom.ac_enaddr)); + printf("address %s", ether_sprintf(sc->arpcom.ac_enaddr)); ifp = &sc->arpcom.ac_if; bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ); @@ -1525,7 +1525,7 @@ wi_get_id(sc) ver.wi_ver[1] = letoh16(ver.wi_ver[1]); ver.wi_ver[2] = letoh16(ver.wi_ver[2]); ver.wi_ver[3] = letoh16(ver.wi_ver[3]); - printf("%s, Firmware %i.%i variant %i,", p, ver.wi_ver[2], + printf("%s, Firmware %i.%i variant %i, ", p, ver.wi_ver[2], ver.wi_ver[3], ver.wi_ver[1]); sc->sc_prism2_ver = ver.wi_ver[2] * 100 + ver.wi_ver[3] * 10 + ver.wi_ver[1]; |