diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-04-22 11:47:46 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-04-23 08:59:23 +0200 |
commit | 246d12b5b49c045b6c74ea18ebb53778692a7e3f (patch) | |
tree | 1280dd845a4db7ef5399162297e325139d996a79 /package/busybox/1.20.2/busybox-1.20.2-ntpd.patch | |
parent | bd528977f1dbe232bd1ca2a0bd9a37f9172d579a (diff) | |
download | buildroot-novena-246d12b5b49c045b6c74ea18ebb53778692a7e3f.tar.gz buildroot-novena-246d12b5b49c045b6c74ea18ebb53778692a7e3f.zip |
busybox: move patches to new model
On commit 5538e4766201aa0c1c23721cfc99cbbde595964b the versioned package
patches changed the directory structure but the packages weren't fixed.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/1.20.2/busybox-1.20.2-ntpd.patch')
-rw-r--r-- | package/busybox/1.20.2/busybox-1.20.2-ntpd.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/busybox/1.20.2/busybox-1.20.2-ntpd.patch b/package/busybox/1.20.2/busybox-1.20.2-ntpd.patch new file mode 100644 index 000000000..17fc0b1c4 --- /dev/null +++ b/package/busybox/1.20.2/busybox-1.20.2-ntpd.patch @@ -0,0 +1,11 @@ +--- busybox-1.20.2/networking/ntpd.c ++++ busybox-1.20.2-ntpd/networking/ntpd.c +@@ -1840,7 +1840,7 @@ recv_and_process_client_pkt(void /*int f + + /* Build a reply packet */ + memset(&msg, 0, sizeof(msg)); +- msg.m_status = G.stratum < MAXSTRAT ? G.ntp_status : LI_ALARM; ++ msg.m_status = G.stratum < MAXSTRAT ? (G.ntp_status & LI_MASK) : LI_ALARM; + msg.m_status |= (query_status & VERSION_MASK); + msg.m_status |= ((query_status & MODE_MASK) == MODE_CLIENT) ? + MODE_SERVER : MODE_SYM_PAS; |