diff options
-rw-r--r-- | networking/ntpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c index e27dbaa6b..165673a1e 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c | |||
@@ -1745,7 +1745,7 @@ static NOINLINE void | |||
1745 | recv_and_process_client_pkt(void /*int fd*/) | 1745 | recv_and_process_client_pkt(void /*int fd*/) |
1746 | { | 1746 | { |
1747 | ssize_t size; | 1747 | ssize_t size; |
1748 | uint8_t version; | 1748 | //uint8_t version; |
1749 | len_and_sockaddr *to; | 1749 | len_and_sockaddr *to; |
1750 | struct sockaddr *from; | 1750 | struct sockaddr *from; |
1751 | msg_t msg; | 1751 | msg_t msg; |
@@ -1793,7 +1793,7 @@ recv_and_process_client_pkt(void /*int fd*/) | |||
1793 | msg.m_rootdelay = d_to_sfp(G.rootdelay); | 1793 | msg.m_rootdelay = d_to_sfp(G.rootdelay); |
1794 | //simple code does not do this, fix simple code! | 1794 | //simple code does not do this, fix simple code! |
1795 | msg.m_rootdisp = d_to_sfp(G.rootdisp); | 1795 | msg.m_rootdisp = d_to_sfp(G.rootdisp); |
1796 | version = (query_status & VERSION_MASK); /* ... >> VERSION_SHIFT - done below instead */ | 1796 | //version = (query_status & VERSION_MASK); /* ... >> VERSION_SHIFT - done below instead */ |
1797 | msg.m_refid = G.refid; // (version > (3 << VERSION_SHIFT)) ? G.refid : G.refid3; | 1797 | msg.m_refid = G.refid; // (version > (3 << VERSION_SHIFT)) ? G.refid : G.refid3; |
1798 | 1798 | ||
1799 | /* We reply from the local address packet was sent to, | 1799 | /* We reply from the local address packet was sent to, |