diff options
author | Andi Gutmans <andi@php.net> | 2001-04-30 12:45:02 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2001-04-30 12:45:02 +0000 |
commit | 4c823e8a895632382de841055fa961ec760d086c (patch) | |
tree | d319b78485393d28ee56b4302803bc5155558ba6 /ext/filepro/filepro.c | |
parent | 96330d36bc1146c87a14c7def528e79a4866bee7 (diff) | |
download | php-git-4c823e8a895632382de841055fa961ec760d086c.tar.gz |
- Change macros from V_ to VCWD_ because of AIX name clash
Diffstat (limited to 'ext/filepro/filepro.c')
-rw-r--r-- | ext/filepro/filepro.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/filepro/filepro.c b/ext/filepro/filepro.c index 915e4f3de8..85a24cadfb 100644 --- a/ext/filepro/filepro.c +++ b/ext/filepro/filepro.c @@ -214,7 +214,7 @@ PHP_FUNCTION(filepro) RETURN_FALSE; } - if (!(fp = V_FOPEN(workbuf, "r"))) { + if (!(fp = VCWD_FOPEN(workbuf, "r"))) { php_error(E_WARNING, "filePro: cannot open map: [%d] %s", errno, strerror(errno)); RETURN_FALSE; @@ -313,7 +313,7 @@ PHP_FUNCTION(filepro_rowcount) RETURN_FALSE; } - if (!(fp = V_FOPEN(workbuf, "r"))) { + if (!(fp = VCWD_FOPEN(workbuf, "r"))) { php_error(E_WARNING, "filePro: cannot open key: [%d] %s", errno, strerror(errno)); RETURN_FALSE; @@ -538,7 +538,7 @@ PHP_FUNCTION(filepro_retrieve) RETURN_FALSE; } - if (!(fp = V_FOPEN(workbuf, "r"))) { + if (!(fp = VCWD_FOPEN(workbuf, "r"))) { php_error(E_WARNING, "filePro: cannot open key: [%d] %s", errno, strerror(errno)); fclose(fp); |