Update of /cvsroot/firebird/interbase/jrd
In directory usw-pr-cvs1:/tmp/cvs-serv13137/jrd
Modified Files:
flu.c
Log Message:
Output the system error message if a UDF library can not be loaded.
Index: flu.c
===================================================================
RCS file: /cvsroot/firebird/interbase/jrd/flu.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -U3 -r1.9 -r1.10
--- flu.c 2001/06/06 23:54:12 1.9
+++ flu.c 2001/06/20 15:58:06 1.10
@@ -866,6 +866,9 @@
/* Module is in the standard UDF directory: load it. */
if (!(mod->mod_handle = dlopen (ib_lib_path, RTLD_LAZY)))
{
+#ifdef DEV_BUILD
+ printf("%s\n",dlerror());
+#endif
gds__free (mod);
return NULL;
}
|