mirror of https://github.com/openwrt/luci.git
[libiwinfo] fixup ccode in wl_get_country()
parent
b1484bf49e
commit
e3570b7b0d
|
@ -7,7 +7,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libiwinfo
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
|
|
|
@ -482,8 +482,23 @@ int wl_get_freqlist(const char *ifname, char *buf, int *len)
|
|||
|
||||
int wl_get_country(const char *ifname, char *buf)
|
||||
{
|
||||
if( !wl_ioctl(ifname, WLC_GET_COUNTRY, buf, WLC_CNTRY_BUF_SZ) )
|
||||
char ccode[WLC_CNTRY_BUF_SZ];
|
||||
|
||||
if( !wl_ioctl(ifname, WLC_GET_COUNTRY, ccode, WLC_CNTRY_BUF_SZ) )
|
||||
{
|
||||
/* IL0 -> World */
|
||||
if( !strcmp(ccode, "IL0") )
|
||||
sprintf(buf, "00");
|
||||
|
||||
/* YU -> RS */
|
||||
else if( !strcmp(ccode, "YU") )
|
||||
sprintf(buf, "RS");
|
||||
|
||||
else
|
||||
memcpy(buf, ccode, 2);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue