diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-14 20:52:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-14 20:52:32 +0000 |
commit | e31cac9420203a4e01327eaffe1cc27f15463afb (patch) | |
tree | dc8b364e8900285904a6467271899c1abff1790a /sunrpc/auth_unix.c | |
parent | c764b9a7280436b891ffa5dfb46d14a8df405a97 (diff) | |
download | glibc-e31cac9420203a4e01327eaffe1cc27f15463afb.tar glibc-e31cac9420203a4e01327eaffe1cc27f15463afb.tar.gz glibc-e31cac9420203a4e01327eaffe1cc27f15463afb.tar.bz2 glibc-e31cac9420203a4e01327eaffe1cc27f15463afb.zip |
Update.
1998-07-14 Ulrich Drepper <drepper@cygnus.com>
* sunrpc/auth_unix.c (authunix_create_default): Use __sysconf
instead of sysconf.
Diffstat (limited to 'sunrpc/auth_unix.c')
-rw-r--r-- | sunrpc/auth_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/auth_unix.c b/sunrpc/auth_unix.c index 091735e519..c4c001abf5 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) |