Fix parsing of the < > quoted time zone names. Compare the correct character instead of repeatedly comparing the first character.
@@ -84,7 +84,7 @@ static void getname(char *d, const char **p)
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];
} else {