diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-08-15 09:53:21 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-08-15 09:53:21 +0000 |
commit | e0d13e77d09997a13c73b58dd3e6232d45c8d1a5 (patch) | |
tree | 6713ede79915815b117035c65a1ce7a8c87bf7bf /package/busybox/patches/801-brctl_zero_time.patch | |
parent | 462dabc7f55d5e5f0aa7d63c10b66e25a091f405 (diff) | |
download | upstream-e0d13e77d09997a13c73b58dd3e6232d45c8d1a5.tar.gz upstream-e0d13e77d09997a13c73b58dd3e6232d45c8d1a5.tar.bz2 upstream-e0d13e77d09997a13c73b58dd3e6232d45c8d1a5.zip |
package/busybox: update to busybox-1.7.1, include upstream patches
SVN-Revision: 22659
Diffstat (limited to 'package/busybox/patches/801-brctl_zero_time.patch')
-rw-r--r-- | package/busybox/patches/801-brctl_zero_time.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/package/busybox/patches/801-brctl_zero_time.patch b/package/busybox/patches/801-brctl_zero_time.patch deleted file mode 100644 index 52e5623e64..0000000000 --- a/package/busybox/patches/801-brctl_zero_time.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/networking/brctl.c -+++ b/networking/brctl.c -@@ -48,8 +48,9 @@ static ALWAYS_INLINE void strtotimeval(s - { - double secs; - #if BRCTL_USE_INTERNAL -+ errno = 0; - secs = /*bb_*/strtod(time_str, NULL); -- if (!secs) -+ if (errno) - #else - if (sscanf(time_str, "%lf", &secs) != 1) - #endif |