diff options
author | 2002-07-10 18:08:13 +0000 | |
---|---|---|
committer | 2002-07-10 18:08:13 +0000 | |
commit | 87b5abd14636eec3f41d5933b6a11e7729441a16 (patch) | |
tree | 4e63297166cedd959e3c8309a6d68b6c0a738be9 /sys/dev/usb/if_url.c | |
parent | check malloc return; from Chad Loder <cloder@acm.org> (diff) | |
download | wireguard-openbsd-87b5abd14636eec3f41d5933b6a11e7729441a16.tar.xz wireguard-openbsd-87b5abd14636eec3f41d5933b6a11e7729441a16.zip |
shorten address printout
Diffstat (limited to 'sys/dev/usb/if_url.c')
-rw-r--r-- | sys/dev/usb/if_url.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_url.c b/sys/dev/usb/if_url.c index 74697ce6697..283ef1db96a 100644 --- a/sys/dev/usb/if_url.c +++ b/sys/dev/usb/if_url.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_url.c,v 1.5 2002/06/26 11:29:55 espie Exp $ */ +/* $OpenBSD: if_url.c,v 1.6 2002/07/10 18:08:13 deraadt Exp $ */ /* $NetBSD: if_url.c,v 1.2 2002/03/28 21:49:19 ichiro Exp $ */ /* * Copyright (c) 2001, 2002 @@ -281,7 +281,7 @@ USB_ATTACH(url) } /* Print Ethernet Address */ - printf("%s: Ethernet address %s\n", devname, ether_sprintf(eaddr)); + printf("%s: address %s\n", devname, ether_sprintf(eaddr)); /* initialize interface infomation */ ifp = GET_IFP(sc); |