summaryrefslogtreecommitdiff
path: root/ext/ftp
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-12-17 21:34:28 +0000
committerZeev Suraski <zeev@php.net>1999-12-17 21:34:28 +0000
commit502bb9c746e3d07cf8c5faa18b38497a0a6773bc (patch)
tree3c2c8d35b267b2e42ef1311ec8ff4ecb33987cec /ext/ftp
parent59a3b83bf56b0aa837c7c11adca15a318b0bd99d (diff)
downloadphp-git-502bb9c746e3d07cf8c5faa18b38497a0a6773bc.tar.gz
More php3 cleanup
Diffstat (limited to 'ext/ftp')
-rw-r--r--ext/ftp/php_ftp.c20
-rw-r--r--ext/ftp/php_ftp.h12
2 files changed, 7 insertions, 25 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c
index 1b86f1f4cf..f96cc21a3c 100644
--- a/ext/ftp/php_ftp.c
+++ b/ext/ftp/php_ftp.c
@@ -34,12 +34,6 @@
#if HAVE_FTP
-#ifndef ZEND_VERSION
-#include "internal_functions.h"
-#include "php3_list.h"
-#define php_error php_error
-#endif
-
#include "ext/standard/file.h"
#include "php_ftp.h"
@@ -48,7 +42,7 @@
static int le_ftpbuf;
-function_entry php3_ftp_functions[] = {
+function_entry php_ftp_functions[] = {
PHP_FE(ftp_connect, NULL)
PHP_FE(ftp_login, NULL)
PHP_FE(ftp_pwd, NULL)
@@ -72,14 +66,10 @@ function_entry php3_ftp_functions[] = {
{NULL, NULL, NULL}
};
-zend_module_entry php3_ftp_module_entry = {
+zend_module_entry php_ftp_module_entry = {
"FTP Functions",
- php3_ftp_functions,
-#ifdef ZEND_VERSION
+ php_ftp_functions,
PHP_MINIT(ftp),
-#else
- php3_minit_ftp,
-#endif
NULL,
NULL,
NULL,
@@ -92,11 +82,7 @@ static void ftp_destructor_ftpbuf(ftpbuf_t *ftp)
ftp_close(ftp);
}
-#ifndef ZEND_VERSION
-int php3_minit_ftp(INIT_FUNC_ARGS)
-#else
PHP_MINIT_FUNCTION(ftp)
-#endif
{
ELS_FETCH();
diff --git a/ext/ftp/php_ftp.h b/ext/ftp/php_ftp.h
index fa978c4531..8e1a08ec83 100644
--- a/ext/ftp/php_ftp.h
+++ b/ext/ftp/php_ftp.h
@@ -40,14 +40,10 @@
#if HAVE_FTP
-extern zend_module_entry php3_ftp_module_entry;
-#define php3_ftp_module_ptr &php3_ftp_module_entry
+extern zend_module_entry php_ftp_module_entry;
+#define php_ftp_module_ptr &php_ftp_module_entry
-#ifdef ZEND_VERSION
PHP_MINIT_FUNCTION(ftp);
-#else
-int php3_minit_ftp(INIT_FUNC_ARGS);
-#endif
PHP_FUNCTION(ftp_connect);
PHP_FUNCTION(ftp_login);
@@ -70,10 +66,10 @@ PHP_FUNCTION(ftp_rename);
PHP_FUNCTION(ftp_delete);
PHP_FUNCTION(ftp_quit);
-#define phpext_ftp_ptr php3_ftp_module_ptr
+#define phpext_ftp_ptr php_ftp_module_ptr
#else
-#define php3_ftp_module_ptr NULL
+#define php_ftp_module_ptr NULL
#endif /* HAVE_FTP */
#endif