mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket/socket.c (tcp_svr_s_open): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
36192dfa4a
commit
9bb82109f7
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Jan 18 10:12:00 2002 Usaku Nakamura <usa@ruby-lang.org>
|
||||
|
||||
* ext/socket/socket.c (tcp_svr_s_open): fix typo.
|
||||
|
||||
Thu Jan 17 16:21:42 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* eval.c (block_pass): allow "retry" from within argument passed
|
||||
|
|
|
@ -1091,7 +1091,7 @@ tcp_svr_s_open(argc, argv, klass)
|
|||
VALUE *argv;
|
||||
VALUE klass;
|
||||
{
|
||||
return tcp_svr_s_init(argc, argv, rb_obj_alloc(klass));
|
||||
return tcp_svr_init(argc, argv, rb_obj_alloc(klass));
|
||||
}
|
||||
|
||||
static VALUE
|
||||
|
|
Loading…
Add table
Reference in a new issue