Accept 64 byte length WiFi passwords (#1730)
This commit is contained in:
parent
305d7c4672
commit
a18826ec54
|
@ -737,7 +737,7 @@ static int wifi_station_config( lua_State* L )
|
|||
memcpy(sta_conf.ssid, ssid, sl);
|
||||
|
||||
const char *password = luaL_checklstring( L, 2, &pl );
|
||||
luaL_argcheck(L, (pl==0||(pl>=8 && pl<sizeof(sta_conf.password)) ), 2, "length:0 or 8-64");
|
||||
luaL_argcheck(L, (pl==0||(pl>=8 && pl<=sizeof(sta_conf.password)) ), 2, "length:0 or 8-64");
|
||||
|
||||
memcpy(sta_conf.password, password, pl);
|
||||
|
||||
|
|
Loading…
Reference in New Issue