Mercurial > pidgin
changeset 6635:96c5630f8d1d
[gaim-migrate @ 7159]
Removed the error notification when a plugin doesn't return valid info.
Instead, silently ignore it and destroy the plugin structure.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Tue, 26 Aug 2003 23:35:28 +0000 |
parents | dd0d238edf21 |
children | 452c62a92963 |
files | src/plugin.c |
diffstat | 1 files changed, 0 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/src/plugin.c Tue Aug 26 23:34:57 2003 +0000 +++ b/src/plugin.c Tue Aug 26 23:35:28 2003 +0000 @@ -209,16 +209,6 @@ plugin->error = NULL; if (!gaim_init_plugin(plugin) || plugin->info == NULL) { - char buf[BUFSIZ]; - - g_snprintf(buf, sizeof(buf), - _("The plugin %s did not return any valid plugin " - "information"), - plugin->path); - - gaim_notify_error(NULL, NULL, - _("Gaim was unable to load your plugin."), buf); - gaim_plugin_destroy(plugin); return NULL;