andrey Sun Jun 15 11:24:24 2003 EDT
Modified files:
/php4/ext/ftp php_ftp.c
Log:
proto fixes
Index: php4/ext/ftp/php_ftp.c
diff -u php4/ext/ftp/php_ftp.c:1.89 php4/ext/ftp/php_ftp.c:1.90
--- php4/ext/ftp/php_ftp.c:1.89 Tue Jun 10 16:03:29 2003
+++ php4/ext/ftp/php_ftp.c Sun Jun 15 11:24:24 2003
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_ftp.c,v 1.89 2003/06/10 20:03:29 imajes Exp $ */
+/* $Id: php_ftp.c,v 1.90 2003/06/15 15:24:24 andrey Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -554,7 +554,7 @@
}
/* }}} */
-/* {{{ 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 @@
}
/* }}} */
-/* {{{ 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 @@
/* }}} */
-/* {{{ 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 @@
}
/* }}} */
-/* {{{ proto void ftp_close(resource stream)
+/* {{{ proto bool ftp_close(resource stream)
Closes the FTP stream */
PHP_FUNCTION(ftp_close)
{
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php