]> granicus.if.org Git - php/commitdiff
Aligned the ifdef NETWARE blocks to first column.
authorAnantha Kesari H Y <hyanantha@php.net>
Wed, 22 Sep 2004 14:31:21 +0000 (14:31 +0000)
committerAnantha Kesari H Y <hyanantha@php.net>
Wed, 22 Sep 2004 14:31:21 +0000 (14:31 +0000)
Zend/zend_API.c

index b1031bec56f5e6f22a9d232c29faf27e4862aa7d..3a9cabd840970b780f72641544a96cce53dc7961 100644 (file)
@@ -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
 }