From: Jim Jagielski Date: Mon, 22 Apr 2002 12:58:30 +0000 (+0000) Subject: Allow for the same functionality under Rhapsody... X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=28054baac551185f1b19ba07544e65777fee6c35;p=thirdparty%2Fapache%2Fhttpd.git Allow for the same functionality under Rhapsody... 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 --- diff --git a/src/os/unix/os.c b/src/os/unix/os.c index 0a07e849f80..5f97f6eaf95 100644 --- a/src/os/unix/os.c +++ b/src/os/unix/os.c @@ -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;