summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-01 15:26:06 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-01 15:26:06 +0000
commit379c5c1e437821941802946fd370f0b84eb7363b (patch)
tree63bb6bb29f19fcdf970f3e0307a6c459c5c5480f
parent5c547fd3e240509579cf737df843859289ba2f9b (diff)
* ext/etc/etc.c (etc_getgrent): typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ext/etc/etc.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b44fadc936..d1b67d1e03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,10 @@
-Thu Oct 2 00:14:16 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Thu Oct 2 00:25:21 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
* signal.c (ruby_signal_name): adjust to the prototype.
* process.c (pst_inspect): ditto.
- * ext/etc/etc.c (Init_etc): typo.
+ * ext/etc/etc.c (etc_getgrent, Init_etc): typo.
Wed Oct 1 20:49:41 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
diff --git a/ext/etc/etc.c b/ext/etc/etc.c
index ac52eb662f..f64b30604a 100644
--- a/ext/etc/etc.c
+++ b/ext/etc/etc.c
@@ -339,7 +339,7 @@ etc_getgrent(obj)
struct group *gr;
if (gr = getgrent()) {
- return setup_passwd(gr);
+ return setup_group(gr);
}
#endif
return Qnil;