]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Allow for the same functionality under Rhapsody...
authorJim Jagielski <jim@apache.org>
Mon, 22 Apr 2002 12:58:30 +0000 (12:58 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 22 Apr 2002 12:58:30 +0000 (12:58 +0000)
NSLINKMODULE_OPTION_NONE maps to the enum FALSE for the old API

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@94754 13f79535-47bb-0310-9956-ffa450edef68

src/os/unix/os.c

index 0a07e849f80af0ee690b32986104c87b9578becd..5f97f6eaf9516423cdb4c2d7c335c7a2fb4db3d0 100644 (file)
@@ -114,7 +114,7 @@ void *ap_os_dso_load(const char *path)
 #if defined(NSLINKMODULE_OPTION_NONE)
     handle = NSLinkModule(image, path, NSLINKMODULE_OPTION_NONE);
 #else
-    handle = NSLinkModule(image, path, TRUE);
+    handle = NSLinkModule(image, path, FALSE);
 #endif
     NSDestroyObjectFileImage(image);
     return handle;