diff options
Diffstat (limited to 'toolchain/musl/patches/400-fix_quoted_timezone.patch')
-rw-r--r-- | toolchain/musl/patches/400-fix_quoted_timezone.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/toolchain/musl/patches/400-fix_quoted_timezone.patch b/toolchain/musl/patches/400-fix_quoted_timezone.patch deleted file mode 100644 index 79afa4a63b..0000000000 --- a/toolchain/musl/patches/400-fix_quoted_timezone.patch +++ /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 { |