diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-03-26 21:49:58 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-03-26 21:49:58 +0000 |
commit | 49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e (patch) | |
tree | 649aa4b2f7961bd72d16b1b4bf74e38ca806c523 /package/busybox/busybox-1.8.2-arping.patch | |
parent | 968402ca279610b8d2472b85ad3e839fe1bf48a6 (diff) | |
download | buildroot-novena-49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e.tar.gz buildroot-novena-49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e.zip |
busybox: bump 1.7.x and 1.8.x versions
Diffstat (limited to 'package/busybox/busybox-1.8.2-arping.patch')
-rw-r--r-- | package/busybox/busybox-1.8.2-arping.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/package/busybox/busybox-1.8.2-arping.patch b/package/busybox/busybox-1.8.2-arping.patch deleted file mode 100644 index 9e1d77e5b..000000000 --- a/package/busybox/busybox-1.8.2-arping.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -urN busybox-1.8.2/networking/arping.c busybox-1.8.2-arping/networking/arping.c ---- busybox-1.8.2/networking/arping.c 2007-11-10 01:40:47.000000000 +0000 -+++ busybox-1.8.2-arping/networking/arping.c 2007-12-18 10:31:55.000000000 +0000 -@@ -207,7 +207,8 @@ - } - - if (last) { -- printf(" %u.%03ums\n", last / 1000, last % 1000); -+ unsigned diff = MONOTONIC_US() - last; -+ printf(" %u.%03ums\n", diff / 1000, diff % 1000); - } else { - printf(" UNSOLICITED?\n"); - } |