diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2004-09-22 14:31:21 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2004-09-22 14:31:21 +0000 |
commit | 5af07c3c8be47da1476d86ed04bd287c0a669846 (patch) | |
tree | 747c2195685330ef5378d64c13639969c9cacbe3 /Zend/zend_API.c | |
parent | 8eb7503078b804fd38ba06ff67814ddca98b6e38 (diff) | |
download | php-git-5af07c3c8be47da1476d86ed04bd287c0a669846.tar.gz |
Aligned the ifdef NETWARE blocks to first column.
Diffstat (limited to 'Zend/zend_API.c')
-rw-r--r-- | Zend/zend_API.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c index b1031bec56..3a9cabd840 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -1498,17 +1498,17 @@ void module_destructor(zend_module_entry *module) } #if HAVE_LIBDL - #ifdef NETWARE - #ifdef APACHE_2_BUILD - if (module->handle) { - dlclose(module->handle); - } - #endif - #else - if (module->handle) { - dlclose(module->handle); - } - #endif +#ifdef NETWARE +#ifdef APACHE_2_BUILD + if (module->handle) { + dlclose(module->handle); + } +#endif +#else + if (module->handle) { + dlclose(module->handle); + } +#endif #endif } |