Fix getent to call endspent rather than endpwent for shadow database.

This commit is contained in:
Jan-Benedict Glaw 2013-04-22 10:44:31 -07:00 committed by Roland McGrath
parent da1304bcc8
commit d34c915826
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-04-22 Jan-Benedict Glaw <jbglaw@getslash.de>
* nss/getent.c (shadow_keys): Call endspent, not endpwent.
2013-04-22 Siddhesh Poyarekar <siddhesh@redhat.com>
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Compute results

View File

@ -841,7 +841,7 @@ shadow_keys (int number, char *key[])
setspent ();
while ((sp = getspent ()) != NULL)
print_shadow (sp);
endpwent ();
endspent ();
return result;
}