MGOS SNTP support for ESP8266 and ESP32

PUBLISHED_FROM=8e07541e7a3b951dcfd08381b46f6143773eae45
This commit is contained in:
Deomid Ryabkov 2017-03-13 19:46:44 +02:00 committed by Cesanta Bot
parent d3a8862bd8
commit c416012f97

View File

@ -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