projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa4ff95
)
plugin.c: Print lt_dlopen() error messages to STDERR as well.
author
Sebastian Harl
<sh@tokkee.org>
Wed, 12 Sep 2007 08:55:35 +0000
(10:55 +0200)
committer
Florian Forster
<octo@huhu.verplant.org>
Wed, 12 Sep 2007 09:01:14 +0000
(11:01 +0200)
This makes sure the user will get the message on the terminal in any case.
Signed-off-by: Sebastian Harl <sh@tokkee.org>
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
src/plugin.c
patch
|
blob
|
history
diff --git
a/src/plugin.c
b/src/plugin.c
index
fe7a9e5
..
e985dac
100644
(file)
--- a/
src/plugin.c
+++ b/
src/plugin.c
@@
-133,6
+133,7
@@
static int plugin_load_file (char *file)
const char *error = lt_dlerror ();
ERROR ("lt_dlopen failed: %s", error);
+ fprintf (stderr, "lt_dlopen failed: %s\n", error);
return (1);
}
@@
-355,6
+356,10
@@
int plugin_load (const char *type)
ret = 0;
break;
}
+ else
+ {
+ fprintf (stderr, "Unable to load plugin %s.\n", type);
+ }
}
closedir (dh);