Index: ChangeLog from Gary V. Vaughan * libltdl/ltdl.c (lt_dlseterror): Oops. This never worked either, due to a pair of typos. Now fixed. Index: libltdl/ltdl.c =================================================================== RCS file: /cvsroot/libtool/libtool/libltdl/ltdl.c,v retrieving revision 1.149 diff -b -u -r1.149 ltdl.c --- libltdl/ltdl.c 2001/08/14 23:28:40 1.149 +++ libltdl/ltdl.c 2001/08/14 23:47:12 @@ -824,12 +824,12 @@ else if (errindex < LT_ERROR_MAX) { /* No error setting the error message! */ - LT_DLMUTEX_SETERROR (lt_dlerror_strings[errorcount]); + LT_DLMUTEX_SETERROR (lt_dlerror_strings[errindex]); } else { /* No error setting the error message! */ - LT_DLMUTEX_SETERROR (user_error_strings[errorcount - LT_ERROR_MAX]); + LT_DLMUTEX_SETERROR (user_error_strings[errindex - LT_ERROR_MAX]); } LT_DLMUTEX_UNLOCK ();