summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a55e821)
raw | patch | inline | side by side (parent: a55e821)
author | Sebastian Harl <sh@tokkee.org> | |
Thu, 30 Jul 2009 15:33:43 +0000 (17:33 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Tue, 8 Dec 2009 20:13:39 +0000 (21:13 +0100) |
src/plugin.c | patch | blob | history |
diff --git a/src/plugin.c b/src/plugin.c
index 538ebe55d9bb64d42529d2206b73a7a07010d2bd..5ca009c446f9a268005014fb110a4ab80a20d250 100644 (file)
--- a/src/plugin.c
+++ b/src/plugin.c
*list = llist_create ();
if (*list == NULL)
{
- ERROR ("plugin: create_register_callback: "
+ ERROR ("plugin: register_callback: "
"llist_create failed.");
destroy_callback (cf);
return (-1);
key = strdup (name);
if (key == NULL)
{
- ERROR ("plugin: create_register_callback: strdup failed.");
+ ERROR ("plugin: register_callback: strdup failed.");
destroy_callback (cf);
return (-1);
}
le = llentry_create (key, cf);
if (le == NULL)
{
- ERROR ("plugin: create_register_callback: "
+ ERROR ("plugin: register_callback: "
"llentry_create failed.");
free (key);
destroy_callback (cf);