mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
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);
|
memcpy(sta_conf.ssid, ssid, sl);
|
||||||
|
|
||||||
const char *password = luaL_checklstring( L, 2, &pl );
|
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);
|
memcpy(sta_conf.password, password, pl);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user