From: Gary V. Vaughan Date: Mon, 21 Feb 2000 22:09:36 +0000 (+0000) Subject: * libltdl/ltdl.c (lt_remove_dlloader): typo, s/=/==/g. X-Git-Tag: release-1-3d~197 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b87267f513957dda02f872f68a91762f12ea5a93;p=thirdparty%2Flibtool.git * libltdl/ltdl.c (lt_remove_dlloader): typo, s/=/==/g. --- 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; }