From b87267f513957dda02f872f68a91762f12ea5a93 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Mon, 21 Feb 2000 22:09:36 +0000 Subject: [PATCH] * libltdl/ltdl.c (lt_remove_dlloader): typo, s/=/==/g. --- ChangeLog | 2 ++ libltdl/ltdl.c | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 044296dde..4bd2bd46c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ 2000-02-21 Gary V. Vaughan * libltdl/ltdl.c (lt_dlinit): removed unused variable, `loader'. + + * libltdl/ltdl.c (lt_remove_dlloader): typo, s/=/==/g. 2000-02-03 Gary V. Vaughan diff --git a/libltdl/ltdl.c b/libltdl/ltdl.c index 4145e2a43..eb3a93b38 100644 --- a/libltdl/ltdl.c +++ b/libltdl/ltdl.c @@ -803,7 +803,6 @@ int lt_dlinit LTDL_PARAMS((void)) { /* initialize libltdl */ - lt_dlloader_t **loader = &loaders; int errors = 0; if (initialized) { /* Initialize only at first call. */ @@ -1878,7 +1877,7 @@ lt_remove_dlloader (loader_name) /* Fail if there are any open modules which use this loader. */ for (handle = handles; handle; handle = handle->next) - if (handle->loader = place) { + if (handle->loader == place) { last_error = LT_DLSTRERROR(REMOVE_LOADER); return 1; } -- 2.47.3