Skip to content

Commit

Permalink
* ext/socket/socket.c (tcp_svr_s_open): fix typo.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
unak committed Jan 18, 2002
1 parent 36192df commit 9bb8210
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Fri Jan 18 10:12:00 2002 Usaku Nakamura <[email protected]>

* ext/socket/socket.c (tcp_svr_s_open): fix typo.

Thu Jan 17 16:21:42 2002 Yukihiro Matsumoto <[email protected]>

* eval.c (block_pass): allow "retry" from within argument passed
Expand Down
2 changes: 1 addition & 1 deletion ext/socket/socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9bb8210

Please sign in to comment.