summaryrefslogtreecommitdiff
path: root/ext/sockets
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2014-05-17 05:44:26 +0200
committerPierre Joye <pierre.php@gmail.com>2014-05-17 05:44:26 +0200
commitc0bd24b50206062bbb276b305d757c0b84af653c (patch)
treed89da1e59156b01e3cc90f29d6ede11f03137d8b /ext/sockets
parent5939345fd5fe6e00345e93eb91a7468889eb9a68 (diff)
downloadphp-git-c0bd24b50206062bbb276b305d757c0b84af653c.tar.gz
Z_TYPE_PP > Z_TYPE_P
Diffstat (limited to 'ext/sockets')
-rw-r--r--ext/sockets/sendrecvmsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sockets/sendrecvmsg.c b/ext/sockets/sendrecvmsg.c
index 5b57124cb8..901972da36 100644
--- a/ext/sockets/sendrecvmsg.c
+++ b/ext/sockets/sendrecvmsg.c
@@ -326,7 +326,7 @@ int php_do_setsockopt_ipv6_rfc3542(php_socket *php_sock, int level, int optname,
#ifdef IPV6_PKTINFO
case IPV6_PKTINFO:
#ifdef PHP_WIN32
- if (Z_TYPE_PP(arg4) == IS_ARRAY) {
+ if (Z_TYPE_P(arg4) == IS_ARRAY) {
php_error_docref0(NULL TSRMLS_CC, E_WARNING, "Windows does not "
"support sticky IPV6_PKTINFO");
return FAILURE;