From: <the...@us...> - 2006-05-09 00:18:55
|
Revision: 16160 Author: thekingant Date: 2006-05-08 17:18:46 -0700 (Mon, 08 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16160&view=rev Log Message: ----------- 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 Modified Paths: -------------- trunk/src/protocols/oscar/oscar.c trunk/src/protocols/simple/simple.c Modified: trunk/src/protocols/oscar/oscar.c =================================================================== --- trunk/src/protocols/oscar/oscar.c 2006-05-08 04:47:56 UTC (rev 16159) +++ trunk/src/protocols/oscar/oscar.c 2006-05-09 00:18:46 UTC (rev 16160) @@ -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; } Modified: trunk/src/protocols/simple/simple.c =================================================================== --- trunk/src/protocols/simple/simple.c 2006-05-08 04:47:56 UTC (rev 16159) +++ trunk/src/protocols/simple/simple.c 2006-05-09 00:18:46 UTC (rev 16160) @@ -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); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |