]> granicus.if.org Git - php/commitdiff
proto fix
authorHartmut Holzgraefe <hholzgra@php.net>
Fri, 7 Dec 2001 07:27:00 +0000 (07:27 +0000)
committerHartmut Holzgraefe <hholzgra@php.net>
Fri, 7 Dec 2001 07:27:00 +0000 (07:27 +0000)
ext/icap/php_icap.c
ext/openssl/openssl.c
ext/standard/file.c

index 3602231fc9a6703ce04e2338a8eb25aec8f8c6f1..b373b6d36ace98610fcf93486bd3b634575a1249 100644 (file)
@@ -688,7 +688,7 @@ icap_delete_calendar(){
 }
 /* }}} */
 
-/* {{{ proto void icap_open(void)
+/* {{{ proto void icap_popen(void)
    For now this is obviously a dummy */
 PHP_FUNCTION(icap_popen)
 {
index 79c6dac4f62274ede3d14ab730d2db1401dd1170..2376962c60d35d58d3fc260f8828e1e7ccd92d13 100644 (file)
@@ -1368,7 +1368,7 @@ PHP_FUNCTION(openssl_csr_export)
 }
 /* }}} */
 
-/* {{{ proto openssl_csr_sign(mixed csr, mixed x509, mixed priv_key, long days)
+/* {{{ proto resource openssl_csr_sign(mixed csr, mixed x509, mixed priv_key, long days)
    Signs a cert with another CERT */
 PHP_FUNCTION(openssl_csr_sign)
 {
index c0cad4f18fe4ef327b5df72abeb08f63640eafc3..907a211cf9bb8e887e31049fa652fb78b3fd378b 100644 (file)
@@ -891,11 +891,14 @@ PHP_FUNCTION(socket_set_blocking)
 
 /* }}} */
 
+/* {{{ proto bool set_socket_blocking(resource socket, int mode)
+   Set blocking/non-blocking mode on a socket */
 PHP_FUNCTION(set_socket_blocking)
 {
        php_error(E_NOTICE, "set_socket_blocking() is deprecated, use socket_set_blocking() instead");
        PHP_FN(socket_set_blocking)(INTERNAL_FUNCTION_PARAM_PASSTHRU);
 }
+/* }}} */
 
 /* {{{ proto bool socket_set_timeout(int socket_descriptor, int seconds, int microseconds)
    Set timeout on socket read to seconds + microseonds */