From 41d6a62c1c7b5505455040d63c8ea3b82b65714f Mon Sep 17 00:00:00 2001 From: thorpej Date: Tue, 12 Dec 2000 01:32:34 +0000 Subject: [PATCH] s/Ethernet/802.11/ when printing the address. --- sys/dev/ic/an.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys/dev/ic/an.c b/sys/dev/ic/an.c index 713e06126473..8deb422db5be 100644 --- a/sys/dev/ic/an.c +++ b/sys/dev/ic/an.c @@ -1,4 +1,4 @@ -/* $NetBSD: an.c,v 1.2 2000/12/11 23:58:55 onoe Exp $ */ +/* $NetBSD: an.c,v 1.3 2000/12/12 01:32:34 thorpej Exp $ */ /* * Copyright (c) 1997, 1998, 1999 * Bill Paul . All rights reserved. @@ -258,11 +258,12 @@ int an_attach(sc) return(EIO); } - printf("%s: Ethernet address: %s\n", sc->an_dev.dv_xname, + printf("%s: 802.11 address: %s\n", sc->an_dev.dv_xname, ether_sprintf(sc->an_caps.an_oemaddr)); ifp->if_softc = sc; - ifp->if_flags = IFF_BROADCAST | IFF_NOTRAILERS | IFF_SIMPLEX | IFF_MULTICAST; + ifp->if_flags = + IFF_BROADCAST | IFF_NOTRAILERS | IFF_SIMPLEX | IFF_MULTICAST; ifp->if_ioctl = an_ioctl; ifp->if_start = an_start; ifp->if_init = an_init;