+2006-05-11 Gary V. Vaughan <gary@gnu.org>
+
+ * libltdl/ltdl.c (lt_dlhandle_fetch): Arguments to
+ lt_dlhandle_iterate were in the wrong order.
+
2006-05-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* libltdl/m4/libtool.m4 (_LT_LINKER_OPTION): Require
/* ltdl.c -- system independent dlopen wrapper
- Copyright (C) 1998, 1999, 2000, 2004, 2005 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2004, 2005, 2006 Free Software Foundation, Inc.
Originally by Thomas Tanner <tanner@ffii.org>
NOTE: The canonical source of this file is maintained with the
assert (iface); /* iface is a required argument */
- while ((handle = lt_dlhandle_iterate (handle, iface)))
+ while ((handle = lt_dlhandle_iterate (iface, handle)))
{
lt__handle *cur = (lt__handle *) handle;
if (cur && cur->info.name && streq (cur->info.name, module_name))