From 22f1a984f193db2c390826c70c1b030dd7cd9e4c Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 19 Feb 2009 06:14:27 +0000 Subject: * ext/etc/etc.c (etc_each_group): defines only when Etc::Group is available. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/etc/etc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/etc/etc.c') diff --git a/ext/etc/etc.c b/ext/etc/etc.c index d0d28c0d72..0705606462 100644 --- a/ext/etc/etc.c +++ b/ext/etc/etc.c @@ -468,6 +468,7 @@ etc_group(VALUE obj) return Qnil; } +#ifdef HAVE_GETPWENT /* Iterates for each entry in the /etc/group file if a block is given. * If no block is given, returns the enumerator. * @@ -489,12 +490,11 @@ etc_group(VALUE obj) static VALUE etc_each_group(VALUE obj) { -#ifdef HAVE_GETPWENT RETURN_ENUMERATOR(obj, 0, 0); each_group(); -#endif return obj; } +#endif /* Resets the process of reading the /etc/group file, so that the next call * to getgrent will return the first entry again. -- cgit v1.2.3