summaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2008-11-09 22:38:59 +0000
committerNicolas Thill <nico@openwrt.org>2008-11-09 22:38:59 +0000
commitdc1b6a3961328a6fb3a23226832ed3e5c411ab23 (patch)
treef133cc1c5a222ecc9174fd3cbf7b2a484ab41398 /package/busybox
parent774f6c21607020cb9795256c78cb1d42a677bf47 (diff)
downloadmaster-31e0f0ae-dc1b6a3961328a6fb3a23226832ed3e5c411ab23.tar.gz
master-31e0f0ae-dc1b6a3961328a6fb3a23226832ed3e5c411ab23.tar.bz2
master-31e0f0ae-dc1b6a3961328a6fb3a23226832ed3e5c411ab23.zip
fix busybox brctl rejecting 0 as a valid value in time-related commands (setageing, setfd, ...)
SVN-Revision: 13163
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/patches/801-brctl_zero_time.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/busybox/patches/801-brctl_zero_time.patch b/package/busybox/patches/801-brctl_zero_time.patch
new file mode 100644
index 0000000000..e083f9f71f
--- /dev/null
+++ b/package/busybox/patches/801-brctl_zero_time.patch
@@ -0,0 +1,13 @@
+--- a/networking/brctl.c
++++ b/networking/brctl.c
+@@ -34,8 +34,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