aboutsummaryrefslogtreecommitdiff
path: root/libpwdgrp
diff options
context:
space:
mode:
Diffstat (limited to 'libpwdgrp')
-rw-r--r--libpwdgrp/pwd_grp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libpwdgrp/pwd_grp.c b/libpwdgrp/pwd_grp.c
index edf53f350..2060d7811 100644
--- a/libpwdgrp/pwd_grp.c
+++ b/libpwdgrp/pwd_grp.c
@@ -300,8 +300,8 @@ struct group *getgrgid(gid_t gid)
300 * to have been created as a reentrant version of the non-standard 300 * to have been created as a reentrant version of the non-standard
301 * functions getspuid. Why getspuid was added, I do not know. */ 301 * functions getspuid. Why getspuid was added, I do not know. */
302int getspuid_r(uid_t uid, struct spwd *__restrict resultbuf, 302int getspuid_r(uid_t uid, struct spwd *__restrict resultbuf,
303 char *__restrict buffer, size_t buflen, 303 char *__restrict buffer, size_t buflen,
304 struct spwd **__restrict result) 304 struct spwd **__restrict result)
305{ 305{
306 int rv; 306 int rv;
307 struct passwd *pp; 307 struct passwd *pp;
@@ -403,8 +403,8 @@ void endpwent(void)
403 403
404 404
405int getpwent_r(struct passwd *__restrict resultbuf, 405int getpwent_r(struct passwd *__restrict resultbuf,
406 char *__restrict buffer, size_t buflen, 406 char *__restrict buffer, size_t buflen,
407 struct passwd **__restrict result) 407 struct passwd **__restrict result)
408{ 408{
409 int rv; 409 int rv;
410 410
@@ -451,8 +451,8 @@ void endgrent(void)
451} 451}
452 452
453int getgrent_r(struct group *__restrict resultbuf, 453int getgrent_r(struct group *__restrict resultbuf,
454 char *__restrict buffer, size_t buflen, 454 char *__restrict buffer, size_t buflen,
455 struct group **__restrict result) 455 struct group **__restrict result)
456{ 456{
457 int rv; 457 int rv;
458 458
@@ -501,7 +501,7 @@ void endspent(void)
501} 501}
502 502
503int getspent_r(struct spwd *resultbuf, char *buffer, 503int getspent_r(struct spwd *resultbuf, char *buffer,
504 size_t buflen, struct spwd **result) 504 size_t buflen, struct spwd **result)
505{ 505{
506 int rv; 506 int rv;
507 507