From 63ccd7f154799319ea780adbd0b4ded2fcacf571 Mon Sep 17 00:00:00 2001 From: handyande Date: Fri, 30 Dec 2005 12:49:45 +0000 Subject: [PATCH] It seems to me that the dlerror here is not useful, so this replaces the (null) that always seems to be printed SVN revision: 19418 --- src/bin/e_module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_module.c b/src/bin/e_module.c index 2deebcc2f..0983db0b6 100644 --- a/src/bin/e_module.c +++ b/src/bin/e_module.c @@ -150,8 +150,8 @@ e_module_new(char *name) "The full path to this module is:
" "%s
" "The error reported was:
" - "%s
"), - name, buf, dlerror()); + "Module does not contain all needed functions
"), + name, buf); _e_module_dialog_disable_show(_("Error loading Module"), body, m); m->api = NULL; m->func.init = NULL;