mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix compile error of sockssocket
The patch is provided by PhobosK (Phobos Kappa). This should be backported to Ruby 3.0. [Feature #17187]
This commit is contained in:
parent
f8555cad2d
commit
1ffb267c5c
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ socks_init(VALUE sock, VALUE host, VALUE port)
|
|||
init = 1;
|
||||
}
|
||||
|
||||
return rsock_init_inetsock(sock, host, port, Qnil, Qnil, INET_SOCKS, Qnil);
|
||||
return rsock_init_inetsock(sock, host, port, Qnil, Qnil, INET_SOCKS, Qnil, Qnil);
|
||||
}
|
||||
|
||||
#ifdef SOCKS5
|
||||
|
|
Loading…
Reference in a new issue