mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Fix getent to call endspent rather than endpwent for shadow database.
This commit is contained in:
committed by
Roland McGrath
parent
da1304bcc8
commit
d34c915826
@@ -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
|
||||
|
||||
@@ -841,7 +841,7 @@ shadow_keys (int number, char *key[])
|
||||
setspent ();
|
||||
while ((sp = getspent ()) != NULL)
|
||||
print_shadow (sp);
|
||||
endpwent ();
|
||||
endspent ();
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user