diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-07-10 18:08:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-07-10 18:08:14 +0000 |
commit | ef9ffa771216f0ed2cbf3653665b05c9281bb6c7 (patch) | |
tree | a260dc77bece51d5614f4352b7d89d9dad9c300f /sys/dev/pci/if_lge.c | |
parent | 8ba981815f7ff5bbc206c0a0ea4bfd5eec2dd742 (diff) |
shorten address printout
Diffstat (limited to 'sys/dev/pci/if_lge.c')
-rw-r--r-- | sys/dev/pci/if_lge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_lge.c b/sys/dev/pci/if_lge.c index 3d619f108e5..d0338d6efaa 100644 --- a/sys/dev/pci/if_lge.c +++ b/sys/dev/pci/if_lge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_lge.c,v 1.9 2002/03/14 01:26:58 millert Exp $ */ +/* $OpenBSD: if_lge.c,v 1.10 2002/07/10 18:08:13 deraadt Exp $ */ /* * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2000, 2001 @@ -586,7 +586,7 @@ void lge_attach(parent, self, aux) /* * A Level 1 chip was detected. Inform the world. */ - printf(": Ethernet address: %s\n", ether_sprintf(eaddr)); + printf(": address: %s\n", ether_sprintf(eaddr)); bcopy(eaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN); |