# HG changeset patch # User Mark Doliner # Date 1147133926 0 # Node ID e4a4983752a9261636f56bfaaefab9aebe77b850 # Parent 3e58b20cded3339486fc231355e47be13cf0e15a [gaim-migrate @ 16160] Fix one of those assertion failures. My bad. This might also make add notification work for ICQ, for when someone else adds you to their buddy list committer: Tailor Script diff -r 3e58b20cded3 -r e4a4983752a9 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Mon May 08 04:47:56 2006 +0000 +++ b/src/protocols/oscar/oscar.c Tue May 09 00:18:46 2006 +0000 @@ -5095,7 +5095,7 @@ buddy = gaim_find_buddy(gc->account, sn); gaim_debug_info("oscar", "ssi: %s added you to their buddy list\n", sn); - gaim_account_notify_added(gc->account, NULL, sn, (buddy ? gaim_buddy_get_alias_only(buddy) : NULL), NULL); + gaim_account_notify_added(gc->account, sn, NULL, (buddy ? gaim_buddy_get_alias_only(buddy) : NULL), NULL); return 1; } diff -r 3e58b20cded3 -r e4a4983752a9 src/protocols/simple/simple.c --- a/src/protocols/simple/simple.c Mon May 08 04:47:56 2006 +0000 +++ b/src/protocols/simple/simple.c Tue May 09 00:18:46 2006 +0000 @@ -379,7 +379,7 @@ } g_strfreev(parts); - gaim_debug(GAIM_DEBUG_MISC, "simple", "nonce: %s realm: %s ", auth->nonce ? auth->nonce : "(null)", auth->realm ? auth->realm : "(null)"); + gaim_debug(GAIM_DEBUG_MISC, "simple", "nonce: %s realm: %s\n", auth->nonce ? auth->nonce : "(null)", auth->realm ? auth->realm : "(null)"); if(auth->realm) { auth->digest_session_key = gaim_cipher_http_digest_calculate_session_key( "md5", authuser, auth->realm, sip->password, auth->nonce, NULL);