From a8922de8c70ba56fda40ce9e171c4069a6a90d53 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 10 Aug 1996 00:00:16 +0000 Subject: Update for 960809. Fri Aug 9 17:38:58 1996 Ulrich Drepper * sysdeps/unix/sysv/linux/sys/timex.h: Include to get `struct timeval'. * sysdeps/unix/sysv/linux/sys/acct.h: Get time_t from . * sysdeps/unix/sysv/linux/sys/module.h: Get size_t from . * sysdeps/unix/sysv/linux/sys/io.h: Get definition of __P. * sysdeps/unix/sysv/linux/sys/klog.h: Likewise. * gmon/sys/gmon.h: Include to get u_long. * sysdeps/unix/sysv/linux/direntry.h: Complete types in . * io/fts.h: Include to get dev_t. Reported by Matthias Urlichs. * sysdeps/posix/tempname.c [USE_IN_LIBIO]: Don't clear _IO_file_flags. It's the same as _flags. Reported by Miquel van Smoorenburg . Wed Aug 7 19:38:47 1996 Andreas Schwab * sysdeps/unix/sysv/linux/m68k/resourcebits.h: Add RLIMIT_AS. --- grp/fgetgrent.c | 36 ++---------------------------------- 1 file changed, 2 insertions(+), 34 deletions(-) (limited to 'grp/fgetgrent.c') diff --git a/grp/fgetgrent.c b/grp/fgetgrent.c index 38ccd15e6f..95ae2ecd6a 100644 --- a/grp/fgetgrent.c +++ b/grp/fgetgrent.c @@ -16,25 +16,8 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include - -/* Define a line parsing function using the common code - used in the nss_files module. */ - -#define STRUCTURE group -#define ENTNAME grent -struct grent_data {}; - -#define TRAILING_LIST_MEMBER gr_mem -#define TRAILING_LIST_SEPARATOR_P(c) ((c) == ',') -#include "../nss/nss_files/files-parse.c" -LINE_PARSER -(, - STRING_FIELD (result->gr_name, ISCOLON, 0); - STRING_FIELD (result->gr_passwd, ISCOLON, 0); - INT_FIELD (result->gr_gid, ISCOLON, 0, 10,); - ) +#include /* Read one entry from the given stream. */ @@ -43,21 +26,6 @@ fgetgrent (FILE *stream) { static char buffer[BUFSIZ]; static struct group result; - char *p; - - do - { - p = fgets (buffer, sizeof buffer, stream); - if (p == NULL) - return NULL; - - /* Skip leading blanks. */ - while (isspace (*p)) - ++p; - } while (*p == '\0' || *p == '#' || /* Ignore empty and comment lines. */ - /* Parse the line. If it is invalid, loop to - get the next line of the file to parse. */ - ! parse_line (p, &result, (void *) buffer, sizeof buffer)); - return &result; + return __fgetgrent_r (stream, &result, buffer, sizeof buffer); } -- cgit v1.2.3