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

* win32/win32.c (ioctl): should set errno.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9390 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2005-10-14 13:09:11 +00:00
parent 55aba8a1fc
commit b367743e92
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Fri Oct 14 22:05:45 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (ioctl): should set errno.
Fri Oct 14 16:39:37 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
* lib/webrick/config.rb (Config::FileHandler): :UserDir should be nil.

View file

@ -1839,6 +1839,7 @@ setgid(rb_gid_t gid)
int
ioctl(int i, int u, ...)
{
errno = EINVAL;
return -1;
}