2004-12-09 Alex Mogilnikov <alx@intellectronika.ru>

* libc/time/tzset_r (_tzset_r): Properly skip over
        '/' when it is detected.
This commit is contained in:
Jeff Johnston 2004-12-09 21:36:48 +00:00
parent fc2eba361c
commit 0082d4cf57
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-12-09 Alex Mogilnikov <alx@intellectronika.ru>
* libc/time/tzset_r (_tzset_r): Properly skip over
'/' when it is detected.
2004-12-08 Alex Mogilnikov <alx@intellectronika.ru>
* libc/time/tzset_r (_tzset_r): Fix loop.

View File

@ -190,7 +190,7 @@ _DEFUN (_tzset_r, (reent_ptr),
n = 0;
if (*tzenv == '/')
sscanf (tzenv, "%hu%n:%hu%n:%hu%n", &hh, &n, &mm, &n, &ss, &n);
sscanf (tzenv, "/%hu%n:%hu%n:%hu%n", &hh, &n, &mm, &n, &ss, &n);
__tzrule[i].s = ss + SECSPERMIN * mm + SECSPERHOUR * hh;