aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/801-brctl_zero_time.patch
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-08-15 09:53:21 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-08-15 09:53:21 +0000
commite2c3486a60723b4c00131496b0c6ef1331333222 (patch)
tree508b8e2f890ed4a41dbb4f770997f5ddb8f83d7e /package/busybox/patches/801-brctl_zero_time.patch
parentd572e1483fc827bee0e7cb9d5fe491b86fb93971 (diff)
downloadupstream-e2c3486a60723b4c00131496b0c6ef1331333222.tar.gz
upstream-e2c3486a60723b4c00131496b0c6ef1331333222.tar.bz2
upstream-e2c3486a60723b4c00131496b0c6ef1331333222.zip
package/busybox: update to busybox-1.7.1, include upstream patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22659 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches/801-brctl_zero_time.patch')
-rw-r--r--package/busybox/patches/801-brctl_zero_time.patch13
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