changeset 8223:1e145b735b05

[gaim-migrate @ 8946] many thanks to Rob Norris for being patient and helping me discover my stupidity committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 10 Feb 2004 05:54:19 +0000
parents 4f8fd8c833ec
children ad524b8c9c71
files src/protocols/jabber/auth.c
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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);