2005-04-12 16:29:26 -04:00
|
|
|
$OpenBSD: patch-src_common_plugin_c,v 1.3 2005/04/12 20:29:26 naddy Exp $
|
|
|
|
--- src/common/plugin.c.orig Thu Feb 10 02:15:32 2005
|
|
|
|
+++ src/common/plugin.c Sun Apr 3 15:25:49 2005
|
|
|
|
@@ -135,9 +135,9 @@ gint plugin_load(const gchar *filename,
|
Import sylpheed-claws 0.8.11; sumbitted by Jim Geovedi <jim@corebsd.or.id>
Sylpheed-claws is the bleeding edge branch of Sylpheed, an e-mail
client and news reader based on GTK+. Many features are supported
including POP3, IMAP, NNTP, multiple accounts, threading, filtering,
MIME attachments, APOP, SMTP AUTH, SSL, IPv6, GnuPG, internalization,
and more.
2003-04-17 06:13:58 -04:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
- plugin->name = plugin_name;
|
|
|
|
- plugin->desc = plugin_desc;
|
2005-04-12 16:29:26 -04:00
|
|
|
- plugin->type = plugin_type;
|
Import sylpheed-claws 0.8.11; sumbitted by Jim Geovedi <jim@corebsd.or.id>
Sylpheed-claws is the bleeding edge branch of Sylpheed, an e-mail
client and news reader based on GTK+. Many features are supported
including POP3, IMAP, NNTP, multiple accounts, threading, filtering,
MIME attachments, APOP, SMTP AUTH, SSL, IPv6, GnuPG, internalization,
and more.
2003-04-17 06:13:58 -04:00
|
|
|
+ (gint *)plugin->name = plugin_name;
|
|
|
|
+ (gint *)plugin->desc = plugin_desc;
|
2005-04-12 16:29:26 -04:00
|
|
|
+ (gint *)plugin->type = plugin_type;
|
Import sylpheed-claws 0.8.11; sumbitted by Jim Geovedi <jim@corebsd.or.id>
Sylpheed-claws is the bleeding edge branch of Sylpheed, an e-mail
client and news reader based on GTK+. Many features are supported
including POP3, IMAP, NNTP, multiple accounts, threading, filtering,
MIME attachments, APOP, SMTP AUTH, SSL, IPv6, GnuPG, internalization,
and more.
2003-04-17 06:13:58 -04:00
|
|
|
plugin->filename = g_strdup(filename);
|
|
|
|
|
2005-04-12 16:29:26 -04:00
|
|
|
plugins = g_slist_append(plugins, plugin);
|