summaryrefslogtreecommitdiff
path: root/ext/ftp/php_ftp.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-12-06 02:28:26 +0000
committerfoobar <sniper@php.net>2005-12-06 02:28:26 +0000
commita208d9a966905ab2f551acfc93f119b51efc94c7 (patch)
treed5781cdb101153c87b89e22ec876c291e3b970b2 /ext/ftp/php_ftp.c
parenta05e8e335d077b8da349d40e8e9523eec554a89e (diff)
downloadphp-git-a208d9a966905ab2f551acfc93f119b51efc94c7.tar.gz
- Nuke php3 legacy
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 245f480cde..65d208ae37 100644
--- a/ext/ftp/php_ftp.c
+++ b/ext/ftp/php_ftp.c
@@ -51,7 +51,7 @@ static
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO()
-function_entry php_ftp_functions[] = {
+zend_function_entry php_ftp_functions[] = {
PHP_FE(ftp_connect, NULL)
#if HAVE_OPENSSL_EXT
PHP_FE(ftp_ssl_connect, NULL)
@@ -316,7 +316,7 @@ PHP_FUNCTION(ftp_chdir)
Requests execution of a program on the FTP server */
PHP_FUNCTION(ftp_exec)
{
- pval *z_ftp;
+ zval *z_ftp;
ftpbuf_t *ftp;
char *cmd;
int cmd_len;