aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/nogaim.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2005-11-19 12:54:01 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2005-11-19 12:54:01 +0100
commit94281efa4280bd3ef1cecb7cd22deca03ecb5935 (patch)
tree57a9d9e2ede973877ad86b667f766cbab72d616c /protocols/nogaim.c
parent4d50898517f2a1449804d477f00b5aa62ee877cc (diff)
Oops, even BitlBee didn't know yet that channel names can start with &. Now it should.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r--protocols/nogaim.c2
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 );