musl: update musl to 1.1.16+ and switch to download from git
[openwrt/staging/lynxis/omap.git] / toolchain / musl / patches / 400-fix_quoted_timezone.patch
diff --git a/toolchain/musl/patches/400-fix_quoted_timezone.patch b/toolchain/musl/patches/400-fix_quoted_timezone.patch
deleted file mode 100644 (file)
index 79afa4a..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/time/__tz.c
-+++ b/src/time/__tz.c
-@@ -87,7 +87,7 @@
-       int i;
-       if (**p == '<') {
-               ++*p;
--              for (i=0; **p!='>' && i<TZNAME_MAX; i++)
-+              for (i=0; (*p)[i]!='>' && i<TZNAME_MAX; i++)
-                       d[i] = (*p)[i];
-               ++*p;
-       } else {