Changeset 17076
- Timestamp:
- 05/16/11 16:52:13 (2 years ago)
- File:
-
- 1 edited
-
src/router/services/networking/madwifi_ath9k.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/router/services/networking/madwifi_ath9k.c
r16915 r17076 48 48 void setupHostAP_ath9k(char *maininterface, int isfirst, int vapid, int aoss); 49 49 static void setupSupplicant_ath9k(char *prefix, char *ssidoverride); 50 void setupHostAP_generic_ath9k(char *prefix, FILE * fp, int isrepeater );50 void setupHostAP_generic_ath9k(char *prefix, FILE * fp, int isrepeater,int aoss); 51 51 52 52 … … 268 268 } 269 269 270 void setupHostAP_generic_ath9k(char *prefix, FILE * fp, int isrepeater )270 void setupHostAP_generic_ath9k(char *prefix, FILE * fp, int isrepeater, int aoss) 271 271 { 272 272 struct wifi_channels *chan; … … 324 324 !strcmp(netmode, "n2-only") || // 325 325 !strcmp(netmode, "n5-only") || // 326 !strcmp(netmode, "mixed")) && strcmp(akm, "wep") ) {326 !strcmp(netmode, "mixed")) && strcmp(akm, "wep") && !aoss) { 327 327 328 328 if (strcmp(netmode, "mixed") && strcmp(netmode, "ng-only") … … 497 497 if (isfirst) { 498 498 fp = fopen(fstr, "wb"); 499 setupHostAP_generic_ath9k(maininterface, fp, isrepeater );499 setupHostAP_generic_ath9k(maininterface, fp, isrepeater,aoss); 500 500 fprintf(fp, "interface=%s\n", ifname); 501 501 } else {
Note: See TracChangeset
for help on using the changeset viewer.
