]> granicus.if.org Git - php/commitdiff
Oops, forgot to remove those .. thought I had..
authorChris Vandomelen <chrisv@php.net>
Sun, 22 Oct 2000 06:46:43 +0000 (06:46 +0000)
committerChris Vandomelen <chrisv@php.net>
Sun, 22 Oct 2000 06:46:43 +0000 (06:46 +0000)
ext/sockets/sockets.c

index 5da076050c4799a74e6747e2c0b87544bd818228..677b780cb46248fe2117e6784da49f6f27cd1831 100644 (file)
@@ -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);