Deleted Added
full compact
ifieee80211.c (150708) ifieee80211.c (151827)
1/*
2 * Copyright 2001 The Aerospace Corporation. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 10 unchanged lines hidden (view full) ---

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
1/*
2 * Copyright 2001 The Aerospace Corporation. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 10 unchanged lines hidden (view full) ---

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: head/sbin/ifconfig/ifieee80211.c 150708 2005-09-29 13:09:04Z ru $
27 * $FreeBSD: head/sbin/ifconfig/ifieee80211.c 151827 2005-10-28 21:57:04Z brooks $
28 */
29
30/*-
31 * Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
32 * All rights reserved.
33 *
34 * This code is derived from software contributed to The NetBSD Foundation
35 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,

--- 281 unchanged lines hidden (view full) ---

317 if (isdigit(val[0]) && val[1] == ':') {
318 txkey = val[0]-'0'-1;
319 val += 2;
320
321 for (i = 0; i < 4; i++) {
322 bzero(data, sizeof(data));
323 len = sizeof(data);
324 val = get_string(val, ",", data, &len);
28 */
29
30/*-
31 * Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
32 * All rights reserved.
33 *
34 * This code is derived from software contributed to The NetBSD Foundation
35 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,

--- 281 unchanged lines hidden (view full) ---

317 if (isdigit(val[0]) && val[1] == ':') {
318 txkey = val[0]-'0'-1;
319 val += 2;
320
321 for (i = 0; i < 4; i++) {
322 bzero(data, sizeof(data));
323 len = sizeof(data);
324 val = get_string(val, ",", data, &len);
325 if (val == NULL)
326 exit(1);
325
326 set80211(s, IEEE80211_IOC_WEPKEY, i, len, data);
327 }
328 } else {
329 bzero(data, sizeof(data));
330 len = sizeof(data);
331 get_string(val, NULL, data, &len);
332 txkey = 0;

--- 1599 unchanged lines hidden ---
327
328 set80211(s, IEEE80211_IOC_WEPKEY, i, len, data);
329 }
330 } else {
331 bzero(data, sizeof(data));
332 len = sizeof(data);
333 get_string(val, NULL, data, &len);
334 txkey = 0;

--- 1599 unchanged lines hidden ---