1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/etc/etc.c (etc_getgrent): typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-10-01 15:26:06 +00:00
parent 5c547fd3e2
commit 379c5c1e43
2 changed files with 3 additions and 3 deletions

View file

@ -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>

View file

@ -339,7 +339,7 @@ etc_getgrent(obj)
struct group *gr;
if (gr = getgrent()) {
return setup_passwd(gr);
return setup_group(gr);
}
#endif
return Qnil;