This commit is contained in:
2021-03-01 11:37:53 +01:00
parent 6555208d8c
commit e478f00ceb

View File

@ -151,7 +151,8 @@ void networkSntpEngine(void *handle) {
srcPort);
coloredMsg(LOG_BLUE, "nes, received in the %d. cycles", localHandle->retryCount);
localHandle->seconds = ((uint64_t)localHandle->ntpMsg.s.xmt_h) - UNIX_NTP_EPOCH_DIFF;
uint32_t xmt_h = localHandle->ntpMsg.s.xmt_h;
localHandle->seconds = ((uint64_t)xmt_h) - UNIX_NTP_EPOCH_DIFF;
coloredMsg(LOG_BLUE, "nes, xmt: %08x", localHandle->ntpMsg.s.xmt_h);
coloredMsg(LOG_BLUE, "nes, seconds: %lu", localHandle->seconds);
localHandle->sntpState = SNTP_STATE_DONE;