]> granicus.if.org Git - php/commitdiff
Update the arguments in the prototype of fpm_socket_unix_test_connect().
authorAdam Harvey <aharvey@php.net>
Wed, 16 Jan 2013 02:06:56 +0000 (10:06 +0800)
committerAdam Harvey <aharvey@php.net>
Wed, 16 Jan 2013 02:06:56 +0000 (10:06 +0800)
Fixes bug #63999 (php with fpm fails to build on Solaris 10 or 11).

NEWS
sapi/fpm/fpm/fpm_sockets.h

diff --git a/NEWS b/NEWS
index e78af2339d82cd3fcdcc45ad6e16b6e1ea42860d..928d829d7a2bfb82a35b357acc1b2851b1cc3589 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -26,6 +26,9 @@ PHP                                                                        NEWS
   . Fixed bug #55397 (comparsion of incomplete DateTime causes SIGSEGV).
     (Laruence, Derick)
 
+- FPM:
+  . Fixed bug #63999 (php with fpm fails to build on Solaris 10 or 11). (Adam)
+
 20 Dec 2012, PHP 5.3.20
 
 - Zend Engine:
index 499ba6baf89bb7d340936025f2b57e5b4949ed1a..cce5712b8cfbf312c821a1500a683358f7db0106 100644 (file)
@@ -25,7 +25,7 @@
 enum fpm_address_domain fpm_sockets_domain_from_address(char *addr);
 int fpm_sockets_init_main();
 int fpm_socket_get_listening_queue(int sock, unsigned *cur_lq, unsigned *max_lq);
-int fpm_socket_unix_test_connect(struct sockaddr_un *sun, size_t socklen);
+int fpm_socket_unix_test_connect(struct sockaddr_un *sock, size_t socklen);
 
 
 static inline int fd_set_blocked(int fd, int blocked) /* {{{ */