From: Anantha Kesari H Y Date: Wed, 22 Sep 2004 14:31:21 +0000 (+0000) Subject: Aligned the ifdef NETWARE blocks to first column. X-Git-Tag: PRE_NEW_VM_GEN_PATCH~254 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5af07c3c8be47da1476d86ed04bd287c0a669846;p=php Aligned the ifdef NETWARE blocks to first column. --- 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 }