From 4f1a8a763aa328b3ab7f7fec83c5221e52d2a505 Mon Sep 17 00:00:00 2001 From: Chris Vandomelen Date: Sun, 22 Oct 2000 06:46:43 +0000 Subject: [PATCH] Oops, forgot to remove those .. thought I had.. --- ext/sockets/sockets.c | 11 ----------- 1 file changed, 11 deletions(-) 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); -- 2.40.0