comparison libpurple/protocols/yahoo/yahoo.c @ 25891:c0b42d6c2785

propagate from branch 'im.pidgin.pidgin' (head f018e11a7ea08e07f22667e6daca2ec7e64f9710) to branch 'im.pidgin.pidgin.next.minor' (head 685e1461486f2e5322bc2952f8e8bbbf4313dee9)
author Richard Laager <rlaager@wiktel.com>
date Fri, 02 Jan 2009 22:35:12 +0000
parents 367b3ddcf5c3 b26e8a41a937
children 6e1967b0f90b
comparison
equal deleted inserted replaced
25890:43b721aa4b76 25891:c0b42d6c2785
4178 id = yd->conf_id; 4178 id = yd->conf_id;
4179 purple_debug(PURPLE_DEBUG_INFO, "yahoo", 4179 purple_debug(PURPLE_DEBUG_INFO, "yahoo",
4180 "Trying to join %s \n", args[0]); 4180 "Trying to join %s \n", args[0]);
4181 4181
4182 comp = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); 4182 comp = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
4183 g_hash_table_replace(comp, g_strdup("room"), 4183 g_hash_table_replace(comp, g_strdup("room"), g_ascii_strdown(args[0], -1));
4184 g_strdup_printf("%s", g_ascii_strdown(args[0], strlen(args[0]))));
4185 g_hash_table_replace(comp, g_strdup("type"), g_strdup("Chat")); 4184 g_hash_table_replace(comp, g_strdup("type"), g_strdup("Chat"));
4186 4185
4187 yahoo_c_join(gc, comp); 4186 yahoo_c_join(gc, comp);
4188 4187
4189 g_hash_table_destroy(comp); 4188 g_hash_table_destroy(comp);