diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-19 12:54:01 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-19 12:54:01 +0100 |
commit | 94281efa4280bd3ef1cecb7cd22deca03ecb5935 (patch) | |
tree | 57a9d9e2ede973877ad86b667f766cbab72d616c /protocols | |
parent | 4d50898517f2a1449804d477f00b5aa62ee877cc (diff) |
Oops, even BitlBee didn't know yet that channel names can start with &. Now it should.
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/nogaim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index f4a2ecb3..22240d8a 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -770,7 +770,7 @@ struct conversation *serv_got_joined_chat( struct gaim_connection *gc, int id, c c->title = g_strdup( handle ); s = g_new( char, 16 ); - sprintf( s, "#chat_%03d", gc->irc->c_id++ ); + sprintf( s, "&chat_%03d", gc->irc->c_id++ ); c->channel = g_strdup( s ); g_free( s ); |