summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dso/unix/dso.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index b92ae669d..b32dbafc7 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -127,9 +127,9 @@ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
char* err_msg = NULL;
if (NSCreateObjectFileImageFromFile(path, &image) == NSObjectFileImageSuccess) {
#if defined(NSLINKMODULE_OPTION_RETURN_ON_ERROR)
- handle = NSLinkModule(image, path, NSLINKMODULE_OPTION_RETURN_ON_ERROR);
+ os_handle = NSLinkModule(image, path, NSLINKMODULE_OPTION_RETURN_ON_ERROR);
#else
- handle = NSLinkModule(image, path, FALSE);
+ os_handle = NSLinkModule(image, path, FALSE);
#endif
NSDestroyObjectFileImage(image);
}