From 1f3e96b7ac73401c15df4d77bdcf6f441813c443 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 8 Nov 2010 05:41:49 +0000 Subject: [PATCH] * win32/win32.c (get_wsa_extension_function): typos. orz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ win32/win32.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 631e08f14f..70ef18dcc6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Nov 8 14:41:40 2010 NAKAMURA Usaku + + * win32/win32.c (get_wsa_extension_function): typos. + Mon Nov 8 13:41:33 2010 NARUSE, Yui * tool/enc-unicode.rb, diff --git a/win32/win32.c b/win32/win32.c index 5d74673612..2121013e82 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2682,7 +2682,7 @@ rb_w32_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex, } static FARPROC -get_wsa_exetinsion_function(SOCKET s, GUID *guid) +get_wsa_extension_function(SOCKET s, GUID *guid) { DWORD dmy; FARPROC ptr = NULL; @@ -3042,7 +3042,7 @@ recvmsg(int fd, struct msghdr *msg, int flags) if (!pWSARecvMsg) { static GUID guid = WSAID_WSARECVMSG; - pWSARecvMsg = (WSARecvMsg_t)get_wsa_exetinsion_function(s, &guid); + pWSARecvMsg = (WSARecvMsg_t)get_wsa_extension_function(s, &guid); if (!pWSARecvMsg) return -1; } @@ -3101,7 +3101,7 @@ sendmsg(int fd, const struct msghdr *msg, int flags) if (!pWSASendMsg) { static GUID guid = WSAID_WSASENDMSG; - pWSASendMsg = (WSASendMsg_t)get_wsa_exetinsion_function(s, &guid); + pWSASendMsg = (WSASendMsg_t)get_wsa_extension_function(s, &guid); if (!pWSASendMsg) return -1; }