# HG changeset patch # User Nathan Walp # Date 1076392459 0 # Node ID 1e145b735b0563e019f6a914c05e9d5a2f753b67 # Parent 4f8fd8c833eccbaf227c601c017e1745df8238c1 [gaim-migrate @ 8946] many thanks to Rob Norris for being patient and helping me discover my stupidity committer: Tailor Script diff -r 4f8fd8c833ec -r 1e145b735b05 src/protocols/jabber/auth.c --- a/src/protocols/jabber/auth.c Tue Feb 10 04:26:17 2004 +0000 +++ b/src/protocols/jabber/auth.c Tue Feb 10 05:54:19 2004 +0000 @@ -287,8 +287,7 @@ y = g_strndup(result, 16); - a1 = g_strdup_printf("%s:%s:%s:%s@%s", y, nonce, cnonce, jid->node, - jid->domain); + a1 = g_strdup_printf("%s:%s:%s", y, nonce, cnonce); md5_init(&ctx); md5_append(&ctx, a1, strlen(a1)); @@ -399,8 +398,6 @@ g_string_append_printf(response, ",digest-uri=\"xmpp/%s\"", realm); g_string_append_printf(response, ",response=%s", auth_resp); g_string_append_printf(response, ",charset=utf-8"); - g_string_append_printf(response, ",authzid=\"%s@%s\"", - js->user->node, js->user->domain); g_free(auth_resp); g_free(cnonce);