You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by jk...@apache.org on 2013/02/20 10:07:52 UTC

svn commit: r1448045 - /perl/modperl/branches/httpd24/xs/APR/Socket/APR__Socket.h

Author: jkaluza
Date: Wed Feb 20 09:07:51 2013
New Revision: 1448045

URL: http://svn.apache.org/r1448045
Log:
* xs/APR/Socket/APR__Socket.h: Rename 'sock' to 'socket' to fix compilation


Modified:
    perl/modperl/branches/httpd24/xs/APR/Socket/APR__Socket.h

Modified: perl/modperl/branches/httpd24/xs/APR/Socket/APR__Socket.h
URL: http://svn.apache.org/viewvc/perl/modperl/branches/httpd24/xs/APR/Socket/APR__Socket.h?rev=1448045&r1=1448044&r2=1448045&view=diff
==============================================================================
--- perl/modperl/branches/httpd24/xs/APR/Socket/APR__Socket.h (original)
+++ perl/modperl/branches/httpd24/xs/APR/Socket/APR__Socket.h Wed Feb 20 09:07:51 2013
@@ -118,10 +118,10 @@ apr_status_t mpxs_APR__Socket_poll(apr_s
 }
 
 #ifndef WIN32
-static MP_INLINE int mpxs_APR__Socket_fileno(pTHX_ apr_socket_t *sock)
+static MP_INLINE int mpxs_APR__Socket_fileno(pTHX_ apr_socket_t *socket)
 {
     apr_os_sock_t s;
-    apr_os_sock_get(&s, sock);
+    apr_os_sock_get(&s, socket);
     return s;
 }
 #endif