diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-06-21 06:46:27 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-06-21 06:46:27 +0000 |
commit | 8d0c96116176e6f2bb6cedf74036f43ce2589dea (patch) | |
tree | 843944a63ee6ee01806b73a714a43d9006a6e429 /sys | |
parent | c91d3a6080ca117e062c3d2af1ea405787ea3e36 (diff) |
don't convert these to little-endian. now ifconfig shows the nwid on
sparc64 and macppc; tested by me and drahn@ on i386, macppc and sparc64.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/if_wi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/if_wi.c b/sys/dev/ic/if_wi.c index b8af1cfefbd..77841bd8480 100644 --- a/sys/dev/ic/if_wi.c +++ b/sys/dev/ic/if_wi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi.c,v 1.67 2002/06/15 18:49:04 millert Exp $ */ +/* $OpenBSD: if_wi.c,v 1.68 2002/06/21 06:46:26 fgsch Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -124,7 +124,7 @@ u_int32_t widebug = WIDEBUG; #if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.67 2002/06/15 18:49:04 millert Exp $"; + "$OpenBSD: if_wi.c,v 1.68 2002/06/21 06:46:26 fgsch Exp $"; #endif /* lint */ #ifdef foo @@ -1643,8 +1643,8 @@ wi_ioctl(ifp, command, data) error = copyout(&sc->wi_net_name, ifr->ifr_data, sizeof(sc->wi_net_name)); } else { - wreq.wi_type = htole16(WI_RID_CURRENT_SSID); - wreq.wi_len = htole16(WI_MAX_DATALEN); + wreq.wi_type = WI_RID_CURRENT_SSID; + wreq.wi_len = WI_MAX_DATALEN; if (wi_read_record(sc, (struct wi_ltv_gen *)&wreq) || letoh16(wreq.wi_val[0]) > IEEE80211_NWID_LEN) error = EINVAL; |