diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2009-11-23 23:38:31 +0000 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2009-11-23 23:38:31 +0000 | 
| commit | 45a19e543cc567981df92b62f428e0f89f94cb74 (patch) | |
| tree | 8ff4010413e4cc8c8dc3ef8ea5bf01201b2b2e3e /protocols | |
| parent | cd741d8e2bb0b7d08cf36d90f5332a639f190281 (diff) | |
Oops, forgot to change one protocol name string pointer..
Diffstat (limited to 'protocols')
| -rw-r--r-- | protocols/purple/purple.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index a8733f5d..f7b859ff 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -46,7 +46,7 @@ static struct im_connection *purple_ic_by_gc( PurpleConnection *gc )  static void purple_init( account_t *acc )  { -	PurplePlugin *prpl = purple_plugins_find_with_id( acc->prpl->name ); +	PurplePlugin *prpl = purple_plugins_find_with_id( (char*) acc->prpl->data );  	PurplePluginProtocolInfo *pi = prpl->info->extra_info;  	GList *i; | 
