From: Chris Vandomelen Date: Sun, 22 Oct 2000 06:46:43 +0000 (+0000) Subject: Oops, forgot to remove those .. thought I had.. X-Git-Tag: php-4.0.4RC3~570 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f1a8a763aa328b3ab7f7fec83c5221e52d2a505;p=php Oops, forgot to remove those .. thought I had.. --- diff --git a/ext/sockets/sockets.c b/ext/sockets/sockets.c index 5da076050c..677b780cb4 100644 --- a/ext/sockets/sockets.c +++ b/ext/sockets/sockets.c @@ -1402,11 +1402,6 @@ PHP_FUNCTION(recvfrom) RETURN_LONG(-errno); } - if (Z_LVAL_PP(flags) & 0xf0000000) { - Z_LVAL_PP(flags) &= ~0xf0000000; - php_error(E_WARNING, "This platform does not support the MSG_WAITALL flag.."); - } - switch (sa.sa_family) { case AF_UNIX: @@ -1630,12 +1625,6 @@ PHP_FUNCTION(recvmsg) convert_to_long_ex(port); } - if (Z_LVAL_PP(flags) & 0xf0000000) { - Z_LVAL_PP(flags) &= ~0xf0000000; - php_error(E_WARNING, "This platform does not support the MSG_WAITALL flag.."); - } - - ZEND_FETCH_RESOURCE(iov, php_iovec_t *, iovec, -1, "IO vector table", SOCKETSG(le_iov)); ret = getsockname(Z_LVAL_PP(fd), &sa, &salen);