# HG changeset patch # User Christian Hammond # Date 1061940928 0 # Node ID 96c5630f8d1d07da2525be1b63f444c47d1fe080 # Parent dd0d238edf21377e7e9d9b9d779da39077c84b36 [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 diff -r dd0d238edf21 -r 96c5630f8d1d src/plugin.c --- 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;