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/openssl | |
parent | 96330d36bc1146c87a14c7def528e79a4866bee7 (diff) | |
download | php-git-4c823e8a895632382de841055fa961ec760d086c.tar.gz |
- Change macros from V_ to VCWD_ because of AIX name clash
Diffstat (limited to 'ext/openssl')
-rw-r--r-- | ext/openssl/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 9e9f4433d0..8e7f3b9244 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -778,7 +778,7 @@ static X509_STORE * setup_verify(zval * calist) convert_to_string_ex(item); - if (V_STAT(Z_STRVAL_PP(item), &sb) == -1) { + if (VCWD_STAT(Z_STRVAL_PP(item), &sb) == -1) { zend_error(E_WARNING, "%s() unable to stat %s", get_active_function_name(), Z_STRVAL_PP(item)); continue; } |