diff options
Diffstat (limited to 'inet')
-rw-r--r-- | inet/getnetgrent.c | 26 | ||||
-rw-r--r-- | inet/getnetgrent_r.c | 12 |
2 files changed, 19 insertions, 19 deletions
diff --git a/inet/getnetgrent.c b/inet/getnetgrent.c index 3510f015d3..c310e0128e 100644 --- a/inet/getnetgrent.c +++ b/inet/getnetgrent.c @@ -1,20 +1,20 @@ /* Copyright (C) 1996 Free Software Foundation, Inc. -This file is part of the GNU C Library. + This file is part of the GNU C Library. -The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If -not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ + You should have received a copy of the GNU Library General Public + License along with the GNU C Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ #include <netdb.h> diff --git a/inet/getnetgrent_r.c b/inet/getnetgrent_r.c index ffa45193a9..1ef043a326 100644 --- a/inet/getnetgrent_r.c +++ b/inet/getnetgrent_r.c @@ -159,7 +159,7 @@ __internal_endnetgrent (struct __netgrent *datap) /* Remember which was the last used service. */ old_nip = nip; - /* Cycle through all the services and run their setnetgrent functions. */ + /* Cycle through all the services and run their endnetgrent functions. */ no_more = setup ((void **) &fct, "endnetgrent", 1); while (! no_more) { @@ -187,9 +187,9 @@ endnetgrent (void) int -__internal_getnetgrent (char **hostp, char **userp, char **domainp, - struct __netgrent *datap, - char *buffer, size_t buflen) +__internal_getnetgrent_r (char **hostp, char **userp, char **domainp, + struct __netgrent *datap, + char *buffer, size_t buflen) { enum nss_status (*fct) (struct __netgrent *, char *, size_t); int no_more; @@ -278,8 +278,8 @@ __getnetgrent_r (char **hostp, char **userp, char **domainp, __libc_lock_lock (lock); - status = __internal_getnetgrent (hostp, userp, domainp, &dataset, - buffer, buflen); + status = __internal_getnetgrent_r (hostp, userp, domainp, &dataset, + buffer, buflen); __libc_lock_unlock (lock); |