From: Hartmut Holzgraefe Date: Fri, 7 Dec 2001 07:27:00 +0000 (+0000) Subject: proto fix X-Git-Tag: ChangeLog~96 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94737d086f8ef4d9c2a1ceea102fa4ae84c1d900;p=php proto fix --- diff --git a/ext/icap/php_icap.c b/ext/icap/php_icap.c index 3602231fc9..b373b6d36a 100644 --- a/ext/icap/php_icap.c +++ b/ext/icap/php_icap.c @@ -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) { diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 79c6dac4f6..2376962c60 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -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) { diff --git a/ext/standard/file.c b/ext/standard/file.c index c0cad4f18f..907a211cf9 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -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 */