* include/tzfile.h: Add some missing entries.

This commit is contained in:
Christopher Faylor
2003-09-25 03:51:51 +00:00
parent dbf193cea8
commit cd2bce7142
8 changed files with 47 additions and 10 deletions

View File

@ -163,7 +163,7 @@ cygsid::getfromstr (const char *nsidstr)
if (nsidstr && !strncmp (nsidstr, "S-1-", 4))
{
s = strtoul (nsidstr + 4, &lasts, 10);
while ( cnt < 8 && *lasts == '-')
while (cnt < 8 && *lasts == '-')
r[cnt++] = strtoul (lasts + 1, &lasts, 10);
if (!*lasts)
return get_sid (s, cnt, r);