diff options
author | Cristian Ionescu-Idbohrn <cii@axis.com> | 2011-05-16 03:53:00 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-16 03:53:00 +0200 |
commit | 662972a77acdd10357f6cbdba228d707bbdc02ed (patch) | |
tree | b3b6951ed25bfe963497c458ed25b07c83c6d7ac /networking | |
parent | 6afc6775e8b57ff275b9c0919c107d739cdf0b7c (diff) | |
download | busybox-662972a77acdd10357f6cbdba228d707bbdc02ed.tar.gz |
The [-Wunused-but-set-variable] warnings
networking/ntpd.c:1748:19: warning: variable 'version' set but not used
Signed-off-by: Cristian Ionescu-Idbohrn <cii@axis.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-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 recv_and_process_client_pkt(void /*int fd*/) { ssize_t size; - uint8_t version; + //uint8_t version; len_and_sockaddr *to; struct sockaddr *from; msg_t msg; @@ -1793,7 +1793,7 @@ recv_and_process_client_pkt(void /*int fd*/) msg.m_rootdelay = d_to_sfp(G.rootdelay); //simple code does not do this, fix simple code! msg.m_rootdisp = d_to_sfp(G.rootdisp); - version = (query_status & VERSION_MASK); /* ... >> VERSION_SHIFT - done below instead */ + //version = (query_status & VERSION_MASK); /* ... >> VERSION_SHIFT - done below instead */ msg.m_refid = G.refid; // (version > (3 << VERSION_SHIFT)) ? G.refid : G.refid3; /* We reply from the local address packet was sent to, |