Changeset 12199
- Timestamp:
- 05/22/09 08:58:27 (4 years ago)
- Location:
- src/router/httpd/visuals
- Files:
-
- 2 edited
-
ejs.c (modified) (2 diffs)
-
site_survey.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/router/httpd/visuals/ejs.c
r12129 r12199 703 703 #endif 704 704 // HAVE_AFTERBURNER 705 if( !str cmp( name, "AFTERBURNER") )705 if( !strncmp( name, "AFTERBURNER", 11 ) ) 706 706 { 707 707 #if defined(HAVE_MADWIFI) || defined(HAVE_RT2880) … … 711 711 char cap[WLC_IOCTL_SMLEN]; 712 712 char caps[WLC_IOCTL_SMLEN]; 713 char *name = nvram_safe_get( "wl0_ifname" ); 713 char *ifname; 714 name = name + 11; 715 if( !strncmp( name, "_wl0", 4 ) ) 716 ifname = nvram_safe_get( "wl0_ifname" ); 717 else // "_wl1" 718 ifname = nvram_safe_get( "wl1_ifname" ); 714 719 char *next; 715 720 716 if( wl_iovar_get( name, "cap", ( void * )caps, WLC_IOCTL_SMLEN ) ==721 if( wl_iovar_get( ifname, "cap", ( void * )caps, WLC_IOCTL_SMLEN ) == 717 722 0 ) 718 723 { -
src/router/httpd/visuals/site_survey.c
r10803 r12199 128 128 rates = "11(b)"; 129 129 else if( site_survey_lists[i].rate_count == 12 ) 130 rates = "54( g)";130 rates = "54(b/g)"; 131 131 else if( site_survey_lists[i].rate_count == 300 ) 132 132 rates = "300(b/g/n)";
Note: See TracChangeset
for help on using the changeset viewer.
