diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-12-15 14:23:07 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-12-15 14:23:07 +0000 |
commit | 052d5fc85d074f82557c8bb538874a9d7ab5f854 (patch) | |
tree | 9d63e5c3090b2713e38b3e5c354429c4ffea9c93 | |
parent | c51651dee2e1d6d476e8dca6aa5160ff00113057 (diff) | |
download | php-git-052d5fc85d074f82557c8bb538874a9d7ab5f854.tar.gz |
proto fix
-rw-r--r-- | ext/ftp/php_ftp.c | 2 | ||||
-rw-r--r-- | ext/gmp/gmp.c | 2 | ||||
-rw-r--r-- | sapi/apache/php_apache.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c index 1ebf090cdc..49f22971ad 100644 --- a/ext/ftp/php_ftp.c +++ b/ext/ftp/php_ftp.c @@ -285,7 +285,7 @@ PHP_FUNCTION(ftp_chdir) /* }}} */ /* {{{ proto int ftp_exec(int stream, string command) - Changes directories */ + Request execution of a program on the ftp server */ PHP_FUNCTION(ftp_exec) { pval *arg1, *arg2; diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index 75b7995c31..1bfd9f7392 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -793,7 +793,7 @@ ZEND_FUNCTION(gmp_sqrt) /* }}} */ /* {{{ proto array gmp_sqrtrem(resource a) - Takes integer part of square root of a */ + Square root with remainder */ ZEND_FUNCTION(gmp_sqrtrem) { zval **a_arg; diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index ec27ca6a31..cb3cfb05f7 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -130,7 +130,7 @@ zend_module_entry apache_module_entry = { }; /* {{{ proto string apache_child_terminate() - Get and set Apache request notes */ + Terminate apache process after this request */ PHP_FUNCTION(apache_child_terminate) { #ifndef MULTITHREAD |