summaryrefslogtreecommitdiff
path: root/nss
diff options
context:
space:
mode:
authorJan-Benedict Glaw <jbglaw@getslash.de>2013-04-22 10:44:31 -0700
committerRoland McGrath <roland@hack.frob.com>2013-04-22 10:44:31 -0700
commitd34c915826734cf20b189e925aac9b9f176bcd53 (patch)
tree492b538a6e91c9ef4e3278f9f7e44a11c7023008 /nss
parentda1304bcc8d718f40e58d92726c0fbc7b0d0794d (diff)
Fix getent to call endspent rather than endpwent for shadow database.
Diffstat (limited to 'nss')
-rw-r--r--nss/getent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/getent.c b/nss/getent.c
index aa4eaf9e0d..8a3c864501 100644
--- a/nss/getent.c
+++ b/nss/getent.c
@@ -841,7 +841,7 @@ shadow_keys (int number, char *key[])
setspent ();
while ((sp = getspent ()) != NULL)
print_shadow (sp);
- endpwent ();
+ endspent ();
return result;
}