comparison src/protocols/jabber/message.c @ 7448:f3f47de6d8a7

[gaim-migrate @ 8059] how did I let this many bugs happen? committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Thu, 06 Nov 2003 17:45:07 +0000
parents 66945d35a7c0
children 2df4d470c12a
comparison
equal deleted inserted replaced
7447:0e7a835e2433 7448:f3f47de6d8a7
197 return; 197 return;
198 198
199 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); 199 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
200 200
201 g_hash_table_replace(components, g_strdup("room"), g_strdup(jid->node)); 201 g_hash_table_replace(components, g_strdup("room"), g_strdup(jid->node));
202 g_hash_table_replace(components, g_strdup("server"), g_strdup(jid->node)); 202 g_hash_table_replace(components, g_strdup("server"), g_strdup(jid->domain));
203 g_hash_table_replace(components, g_strdup("handle"), 203 g_hash_table_replace(components, g_strdup("handle"),
204 g_strdup(jm->js->user->node)); 204 g_strdup(jm->js->user->node));
205 g_hash_table_replace(components, g_strdup("password"), 205 g_hash_table_replace(components, g_strdup("password"),
206 g_strdup(jm->password)); 206 g_strdup(jm->password));
207 207