2010-02-14 Michael Bunk <mb@computer-leipzig.com>

* NEWS, lib/gshadow.c: Fix parsing of gshadow entries.
This commit is contained in:
nekral-guest
2010-03-10 22:30:03 +00:00
parent 391a384715
commit 9866af3777
3 changed files with 9 additions and 2 deletions

View File

@@ -222,6 +222,7 @@ void endsgent (void)
if (NULL == buf) {
return NULL;
}
buflen = BUFSIZ;
}
if (NULL == fp) {
@@ -229,9 +230,9 @@ void endsgent (void)
}
#ifdef USE_NIS
while (fgetsx (buf, (int) sizeof buf, fp) == buf)
while (fgetsx (buf, (int) buflen, fp) == buf)
#else
if (fgetsx (buf, (int) sizeof buf, fp) == buf)
if (fgetsx (buf, (int) buflen, fp) == buf)
#endif
{
while ( ((cp = strrchr (buf, '\n')) == NULL)