Bump ESP-IDF to 3.3.2 LTS (#3196)

This commit is contained in:
Marcel Stör 2020-07-08 08:46:16 +02:00 committed by GitHub
parent 04e01fd4ef
commit cd53865c78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -978,13 +978,13 @@ static int net_getdnsserver( lua_State* L ) {
// ip_addr_t ipaddr;
// dns_getserver(numdns,&ipaddr);
// Bug fix by @md5crypt https://github.com/nodemcu/nodemcu-firmware/pull/500
ip_addr_t ipaddr = dns_getserver(numdns);
const ip_addr_t *ipaddr = dns_getserver(numdns);
if ( ip_addr_isany(&ipaddr) ) {
if ( ip_addr_isany(ipaddr) ) {
lua_pushnil( L );
} else {
char temp[IP_STR_SZ];
ipstr (temp, &ipaddr);
ipstr (temp, ipaddr);
lua_pushstring( L, temp );
}

@ -1 +1 @@
Subproject commit 143d26aa49df524e10fb8e41a71d12e731b9b71d
Subproject commit 9e70825d1e1cbf7988cf36981774300066580ea7