summaryrefslogtreecommitdiff
path: root/ext/ftp/php_ftp.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-04-15 14:20:01 +0000
committerAndi Gutmans <andi@php.net>2000-04-15 14:20:01 +0000
commit1665cba750539a4245cf600bacdff3f74fe7bbfd (patch)
treedafdf6338d70127846edf9f25cb6955777e7b6de /ext/ftp/php_ftp.c
parent603d5ff5d8e2ecfff40f47f9a1e1be8739cec0db (diff)
downloadphp-git-1665cba750539a4245cf600bacdff3f74fe7bbfd.tar.gz
- Change PHP_ to V_ (directory & file functions)
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 d1e0d2e749..390af90887 100644
--- a/ext/ftp/php_ftp.c
+++ b/ext/ftp/php_ftp.c
@@ -550,7 +550,7 @@ PHP_FUNCTION(ftp_get)
RETURN_FALSE;
}
- if ((outfp = PHP_FOPEN(arg2->value.str.val, "w")) == NULL) {
+ if ((outfp = V_FOPEN(arg2->value.str.val, "w")) == NULL) {
fclose(tmpfp);
php_error(E_WARNING, "error opening %s", arg2->value.str.val);
RETURN_FALSE;
@@ -634,7 +634,7 @@ PHP_FUNCTION(ftp_put)
convert_to_string(arg3);
XTYPE(xtype, arg4);
- if ((infp = PHP_FOPEN(arg3->value.str.val, "r")) == NULL) {
+ if ((infp = V_FOPEN(arg3->value.str.val, "r")) == NULL) {
php_error(E_WARNING, "error opening %s", arg3->value.str.val);
RETURN_FALSE;
}