From 83ccb3e51188546ddcd6204574b84c8e5102a243 Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Wed, 2 Jan 2002 01:05:10 +0000 Subject: [PATCH] - Fixed ftp_fget() and ftp_mkdir() protos. --- ext/ftp/php_ftp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c index b04c27ce771..c69c290142e 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) {