Commit c416012f authored by Deomid Ryabkov's avatar Deomid Ryabkov Committed by Cesanta Bot

MGOS SNTP support for ESP8266 and ESP32

PUBLISHED_FROM=8e07541e7a3b951dcfd08381b46f6143773eae45
parent d3a8862b
......@@ -11845,7 +11845,7 @@ void mg_sntp_send_request(struct mg_connection *c) {
*/
#ifndef MG_SNMP_NO_DELAY_CORRECTION
uint32_t sec;
sec = htonl(mg_time() + SNTP_TIME_OFFSET);
sec = htonl((uint32_t)(mg_time() + SNTP_TIME_OFFSET));
memcpy(&buf[40], &sec, sizeof(sec));
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment