summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/801-brctl_zero_time.patch
diff options
context:
space:
mode:
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 52e5623e6..000000000
--- 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