summaryrefslogtreecommitdiff
path: root/ext/ftp/php_ftp.c
diff options
context:
space:
mode:
authorMarkus Fischer <mfischer@php.net>2002-01-02 01:05:10 +0000
committerMarkus Fischer <mfischer@php.net>2002-01-02 01:05:10 +0000
commit83ccb3e51188546ddcd6204574b84c8e5102a243 (patch)
treeac45ea11da27a36b671feceff528893d8a88206f /ext/ftp/php_ftp.c
parent7c197409ae18bef33f8dd77af2e905637315d4a1 (diff)
downloadphp-git-83ccb3e51188546ddcd6204574b84c8e5102a243.tar.gz
- Fixed ftp_fget() and ftp_mkdir() protos.
Diffstat (limited to 'ext/ftp/php_ftp.c')
-rw-r--r--ext/ftp/php_ftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c
index b04c27ce77..c69c290142 100644
--- a/ext/ftp/php_ftp.c
+++ b/ext/ftp/php_ftp.c
@@ -260,7 +260,7 @@ PHP_FUNCTION(ftp_exec)
}
/* }}} */
-/* {{{ proto mixed ftp_mkdir(resource stream, string directory)
+/* {{{ proto string ftp_mkdir(resource stream, string directory)
Creates a directory. Returns the absolute path for the new directory or false on error. */
PHP_FUNCTION(ftp_mkdir)
{
@@ -504,7 +504,7 @@ PHP_FUNCTION(ftp_get)
}
/* }}} */
-/* {{{ proto bool ftp_fput(resource stream, string remote_file, resource local_file, int mode)
+/* {{{ proto bool ftp_fput(resource stream, string remote_file, resource fp, int mode)
Stores a file from an open file to the FTP server */
PHP_FUNCTION(ftp_fput)
{