diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-03-04 04:40:58 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-03-04 04:40:58 +0000 |
commit | e482c6991be00b6c2023c960d474a304954fe59c (patch) | |
tree | 8807e977e729b3511870d832c3071484c18d2bd4 | |
parent | 1115ef95e7070eeb78607ab5f927cc48633c0ecb (diff) |
remove the colon between "address" and the MAC address.
-rw-r--r-- | sys/dev/pci/if_nge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_nge.c b/sys/dev/pci/if_nge.c index 0ab5f873b8a..b42edce6139 100644 --- a/sys/dev/pci/if_nge.c +++ b/sys/dev/pci/if_nge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_nge.c,v 1.49 2006/02/16 20:54:35 brad Exp $ */ +/* $OpenBSD: if_nge.c,v 1.50 2006/03/04 04:40:57 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2000, 2001 @@ -833,7 +833,7 @@ nge_attach(parent, self, aux) /* * A NatSemi chip was detected. Inform the world. */ - printf(", address: %s\n", ether_sprintf(eaddr)); + printf(", address %s\n", ether_sprintf(eaddr)); bcopy(eaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN); |