From: Nicolas Thill Date: Sun, 9 Nov 2008 22:38:59 +0000 (+0000) Subject: fix busybox brctl rejecting 0 as a valid value in time-related commands (setageing... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=ad077fc1417fd754566dafc28269f8fb90290f39 fix busybox brctl rejecting 0 as a valid value in time-related commands (setageing, setfd, ...) SVN-Revision: 13163 --- 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