diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-17 00:14:04 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-17 00:14:04 +0100 |
commit | ef14a83adbb9036c0006ad460c5e11882a3d7e13 (patch) | |
tree | c4d82bdf2c051575072f1bec652baf2283cf65b8 | |
parent | 516a9c69222bed3d6fee7aefb439b461e4173da0 (diff) |
WTF AOL, now suddenly underscores are not allowed in room names?
-rw-r--r-- | protocols/oscar/oscar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/oscar/oscar.c b/protocols/oscar/oscar.c index 9602a496..f98fbe6f 100644 --- a/protocols/oscar/oscar.c +++ b/protocols/oscar/oscar.c @@ -2520,7 +2520,7 @@ struct groupchat *oscar_chat_with(struct im_connection * ic, char *who) static int chat_id = 0; char * chatname; - chatname = g_strdup_printf("%s%s_%d", isdigit(*ic->acc->user) ? "icq_" : "", + chatname = g_strdup_printf("%s%s%d", isdigit(*ic->acc->user) ? "icq" : "", ic->acc->user, chat_id++); ret = oscar_chat_join(ic, chatname, NULL, NULL); |