From: Ulrich Drepper Date: Tue, 14 Jul 1998 20:52:32 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_95~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e31cac9420203a4e01327eaffe1cc27f15463afb;p=platform%2Fupstream%2Fglibc.git Update. 1998-07-14 Ulrich Drepper * sunrpc/auth_unix.c (authunix_create_default): Use __sysconf instead of sysconf. --- diff --git a/ChangeLog b/ChangeLog index 561f3ed..b0389d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-07-14 Ulrich Drepper + + * sunrpc/auth_unix.c (authunix_create_default): Use __sysconf + instead of sysconf. + 1998-07-14 19:39 Ulrich Drepper * stdio-common/vfscanf.c (ungetc): Use _IO_sputbackc, not _IO_ungetc. diff --git a/sunrpc/auth_unix.c b/sunrpc/auth_unix.c index 091735e..c4c001a 100644 --- a/sunrpc/auth_unix.c +++ b/sunrpc/auth_unix.c @@ -172,7 +172,7 @@ authunix_create_default (void) char machname[MAX_MACHINE_NAME + 1]; uid_t uid; gid_t gid; - int max_nr_groups = sysconf (_SC_NGROUPS_MAX); + int max_nr_groups = __sysconf (_SC_NGROUPS_MAX); gid_t gids[max_nr_groups]; if (gethostname (machname, MAX_MACHINE_NAME) == -1)