diff options
| author | Frank M. Kromann <fmk@php.net> | 2001-09-26 03:24:19 +0000 |
|---|---|---|
| committer | Frank M. Kromann <fmk@php.net> | 2001-09-26 03:24:19 +0000 |
| commit | 448e9d49ccaf8c3cd1fb18be7f4a205a82e7d880 (patch) | |
| tree | b94143c2b6cdee4e0da3a77a7a49eaac514c8387 /ext/com/COM.c | |
| parent | deb81174b0a25ee9aab8f9e7faf003cb717946ac (diff) | |
| download | php-git-448e9d49ccaf8c3cd1fb18be7f4a205a82e7d880.tar.gz | |
Fixing Win32 build...
Diffstat (limited to 'ext/com/COM.c')
| -rw-r--r-- | ext/com/COM.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/com/COM.c b/ext/com/COM.c index 6e5361a8f3..e7b70f01bd 100644 --- a/ext/com/COM.c +++ b/ext/com/COM.c @@ -488,7 +488,7 @@ PHP_FUNCTION(com_load) /* if a server is passed, one obviously wants to instanciate a * remote server */ - flags = CTX_REMOTE_SERVER; + flags = CLSCTX_REMOTE_SERVER; /* What is server name? A String or an array? */ @@ -550,7 +550,7 @@ PHP_FUNCTION(com_load) } if (SUCCESS == zend_hash_find(ht, "Flags", 6, (void **) &tmp)) { convert_to_long_ex(tmp); - flags = (CLSCTX) Z_LVAL_P(tmp); + flags = (CLSCTX) Z_LVAL_PP(tmp); } } if (Z_TYPE_P(server_name) == IS_NULL) { |
