diff options
author | Andrey Hristov <andrey@php.net> | 2003-06-15 15:29:46 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2003-06-15 15:29:46 +0000 |
commit | eb33adf139f1af26a8c858400e3a996357fb5f18 (patch) | |
tree | 4d44f9a717b292e51728668e27439c2ec6d0704c /ext/ftp | |
parent | b81873134b275884a400247aedecd002d9335568 (diff) | |
download | php-git-eb33adf139f1af26a8c858400e3a996357fb5f18.tar.gz |
proto fixes
Diffstat (limited to 'ext/ftp')
-rw-r--r-- | ext/ftp/php_ftp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c index 1c45b8ac44..bc546732f6 100644 --- a/ext/ftp/php_ftp.c +++ b/ext/ftp/php_ftp.c @@ -554,7 +554,7 @@ PHP_FUNCTION(ftp_fget) } /* }}} */ -/* {{{ proto bool ftp_nb_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos]) +/* {{{ proto int ftp_nb_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos]) Retrieves a file from the FTP server asynchronly and writes it to an open file */ PHP_FUNCTION(ftp_nb_fget) { @@ -831,7 +831,7 @@ PHP_FUNCTION(ftp_fput) } /* }}} */ -/* {{{ proto bool ftp_nb_fput(resource stream, string remote_file, resource fp, int mode[, int startpos]) +/* {{{ proto int ftp_nb_fput(resource stream, string remote_file, resource fp, int mode[, int startpos]) Stores a file from an open file to the FTP server nbronly */ PHP_FUNCTION(ftp_nb_fput) { @@ -936,7 +936,7 @@ PHP_FUNCTION(ftp_put) /* }}} */ -/* {{{ proto bool ftp_nb_put(resource stream, string remote_file, string local_file, int mode[, int startpos]) +/* {{{ proto int ftp_nb_put(resource stream, string remote_file, string local_file, int mode[, int startpos]) Stores a file on the FTP server */ PHP_FUNCTION(ftp_nb_put) { @@ -1110,7 +1110,7 @@ PHP_FUNCTION(ftp_site) } /* }}} */ -/* {{{ proto void ftp_close(resource stream) +/* {{{ proto bool ftp_close(resource stream) Closes the FTP stream */ PHP_FUNCTION(ftp_close) { |