diff options
author | Zeev Suraski <zeev@php.net> | 1999-04-28 20:26:33 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-04-28 20:26:33 +0000 |
commit | 66476011ddb8a3bee0558df90a201cbbfee1434c (patch) | |
tree | 7a4e01f282db00b604f9445c8170515f86ecbf89 /ext/rpc/com/COM.c | |
parent | 1aaf98e54bc25eac01eaad6f2ea19e1633b6ac5d (diff) | |
download | php-git-66476011ddb8a3bee0558df90a201cbbfee1434c.tar.gz |
A step towards generalizing the INI mechanism even more
Diffstat (limited to 'ext/rpc/com/COM.c')
-rw-r--r-- | ext/rpc/com/COM.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/rpc/com/COM.c b/ext/rpc/com/COM.c index 17e4a28f3b..919e8ec21c 100644 --- a/ext/rpc/com/COM.c +++ b/ext/rpc/com/COM.c @@ -213,8 +213,8 @@ static PHP_INI_MH(OnTypelibFileChange) PHP_INI_BEGIN() - PHP_INI_ENTRY("allow_dcom", "0", PHP_INI_SYSTEM, NULL, NULL) - PHP_INI_ENTRY("typelib_file", NULL, PHP_INI_SYSTEM, OnTypelibFileChange, NULL) + PHP_INI_ENTRY1("allow_dcom", "0", PHP_INI_SYSTEM, NULL, NULL) + PHP_INI_ENTRY1("typelib_file", NULL, PHP_INI_SYSTEM, OnTypelibFileChange, NULL) PHP_INI_END() |