Changeset 12465
- Timestamp:
- 07/08/09 19:14:46 (4 years ago)
- File:
-
- 1 edited
-
src/router/services/services/wpa.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/router/services/services/wpa.c
r12460 r12465 361 361 for (deadcount = 0; deadcount < 5; deadcount++) { 362 362 wl_ioctl(get_wl_instance_name(c), WLC_GET_RADIO, &radiostate, sizeof(int)); 363 if ( radiostate & WL_RADIO_SW_DISABLE== 0) //radio turned on - ready363 if ((radiostate & WL_RADIO_SW_DISABLE) == 0) //radio turned on - ready 364 364 break; 365 365 sleep (1); 366 366 } 367 367 368 if ( radiostate & WL_RADIO_SW_DISABLE!= 0) // radio turned off368 if ((radiostate & WL_RADIO_SW_DISABLE) != 0) // radio turned off 369 369 continue; 370 370 char wlname[32];
Note: See TracChangeset
for help on using the changeset viewer.
