diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-04-17 04:34:09 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-04-17 04:34:09 +0000 |
commit | 5acf05db3c26f072c82b34caf5be4ff09d6c2987 (patch) | |
tree | 6c394fdfa6038ac44ad50e8514097b5eecfdf73b | |
parent | d471bc85066a41148d5a902c01901d37503aef8e (diff) |
No colon after "address" when printing out Ethernet address.
-rw-r--r-- | sys/dev/ic/an.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/an.c b/sys/dev/ic/an.c index ba7812f8acf..70f2aac7499 100644 --- a/sys/dev/ic/an.c +++ b/sys/dev/ic/an.c @@ -1,4 +1,4 @@ -/* $OpenBSD: an.c,v 1.14 2001/04/16 00:40:40 tholo Exp $ */ +/* $OpenBSD: an.c,v 1.15 2001/04/17 04:34:08 aaron Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -220,7 +220,7 @@ an_attach(sc) bcopy((char *)&sc->an_caps.an_oemaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN); - printf(": address: %6s\n", ether_sprintf(sc->arpcom.ac_enaddr)); + printf(": address %6s\n", ether_sprintf(sc->arpcom.ac_enaddr)); bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ); ifp->if_softc = sc; |