1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-07 17:55:27 +03:00
openwrt-xburst/package/busybox/patches/801-brctl_zero_time.patch
nico 9dfc3e34ee [package] busybox: update to v1.14.4 (closes: #5619)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17782 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-09-28 12:38:46 +00:00

14 lines
288 B
Diff

--- 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