From cb4e566359c24ffd17702a64a01a676fb6ca65a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Ter=C3=A4s?= Date: Sun, 1 Jan 2017 18:47:32 +0200 Subject: main/musl: upgrade to 1.1.16 --- ...028-fix-parsing-of-quoted-time-zone-names.patch | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 main/musl/0028-fix-parsing-of-quoted-time-zone-names.patch (limited to 'main/musl/0028-fix-parsing-of-quoted-time-zone-names.patch') diff --git a/main/musl/0028-fix-parsing-of-quoted-time-zone-names.patch b/main/musl/0028-fix-parsing-of-quoted-time-zone-names.patch deleted file mode 100644 index ac99f08db8..0000000000 --- a/main/musl/0028-fix-parsing-of-quoted-time-zone-names.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 8ca27ac4bfe73bff785d0c26c1de0da92b55e5c6 Mon Sep 17 00:00:00 2001 -From: Hannu Nyman -Date: Mon, 24 Oct 2016 13:12:24 +0300 -Subject: [PATCH] fix parsing of quoted time zone names - -Fix parsing of the < > quoted time zone names. Compare the correct -character instead of repeatedly comparing the first character. ---- - src/time/__tz.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/time/__tz.c b/src/time/__tz.c -index 8b84b9bd..0e0c4ea2 100644 ---- a/src/time/__tz.c -+++ b/src/time/__tz.c -@@ -84,7 +84,7 @@ static void getname(char *d, const char **p) - int i; - if (**p == '<') { - ++*p; -- for (i=0; **p!='>' && i