From 5af07c3c8be47da1476d86ed04bd287c0a669846 Mon Sep 17 00:00:00 2001 From: Anantha Kesari H Y Date: Wed, 22 Sep 2004 14:31:21 +0000 Subject: [PATCH] Aligned the ifdef NETWARE blocks to first column. --- Zend/zend_API.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Zend/zend_API.c b/Zend/zend_API.c index b1031bec56f..3a9cabd8409 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 }