# HG changeset patch # User Mikael Berthe # Date 1196889454 -3600 # Node ID 3d4963c8ce87c6baba96c80c62dc62d7f9c9f653 # Parent e20ab87c4c4c82ac6932ca5892a45f7a7dd176a2 Quotes should be escaped in /room nick diff -r e20ab87c4c4c -r 3d4963c8ce87 mcabber/src/commands.c --- a/mcabber/src/commands.c Wed Dec 05 22:05:41 2007 +0100 +++ b/mcabber/src/commands.c Wed Dec 05 22:17:34 2007 +0100 @@ -2341,7 +2341,9 @@ mc_strtolower(roomname_tmp); roomname = to_utf8(roomname_tmp); g_free(roomname_tmp); + nick = to_utf8(arg); + strip_arg_special_chars(nick); jb_room_join(roomname, nick, NULL); g_free(roomname);