From 883206eb16e4a628369c70488e56008f9c1ecd1c Mon Sep 17 00:00:00 2001 From: H_Konishi Date: Wed, 29 May 2002 10:22:19 +0000 Subject: Wed May 29 18:55:47 2002 KONISHI Hiromasa * function renames my* and win32_* to rb_w32_* in win32/win32.c fixed files win32/win32.c, win32/win32.h, win32/dir.h, hash.c, rubysig.h, signal.c, ext/socket/socket.c git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2504 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/socket') diff --git a/ext/socket/socket.c b/ext/socket/socket.c index f4b59f4ad..30ddc69d4 100644 --- a/ext/socket/socket.c +++ b/ext/socket/socket.c @@ -169,8 +169,8 @@ sock_finalize(fptr) if (!fptr->f) return; s = get_osfhandle(fileno(fptr->f)); - myfdclose(fptr->f); - if (fptr->f2) myfdclose(fptr->f2); + rb_w32_fdclose(fptr->f); + if (fptr->f2) rb_w32_fdclose(fptr->f2); closesocket(s); } #endif -- cgit