2.7.0 test tarballs

Elliott Sales de Andrade qulogic at pidgin.im
Wed May 12 01:10:33 EDT 2010


Hi packagers,

Sorry for this extra work, but attached is one more little patch that
didn't make it into the 2.7.0 tarball. It fixes some errors in the MSN
protocol that result in unnecessary network usage, so we recommend
applying it to save your users' bandwidth. Please see ticket #11532
for more details.

On Wed, May 12, 2010 at 12:48 AM, John Bailey <rekkanoryo at rekkanoryo.org> wrote:
> Hi, all,
>
> This has been delayed a few hours more than I wanted it to be, but I have
> tarballs available for you to test for 2.7.0 if you so desire:
>
> Tarballs:
> http://www.pidgin.im/~rekkanoryo/pidgin-2.7.0.tar.bz2
> http://www.pidgin.im/~rekkanoryo/pidgin-2.7.0.tar.gz
>
> Signatures:
> http://www.pidgin.im/~rekkanoryo/pidgin-2.7.0.tar.bz2.asc
> http://www.pidgin.im/~rekkanoryo/pidgin-2.7.0.tar.gz.asc
>
> These signatures are made with my PGP key (key ID 9EA132A6, the same that signs
> this message).
>
> I'd like to release these to the public in approximately 24-48 hours if at all
> possible.
>
> John
>
-------------- next part --------------
#
#
# patch "libpurple/protocols/msn/slplink.c"
#  from [a96a53635871463de0177e5a99fe4ebdc2c7d577]
#    to [87ada76abf90c44e615679efc5f8128bb941bba1]
#
============================================================
--- libpurple/protocols/msn/slplink.c	a96a53635871463de0177e5a99fe4ebdc2c7d577
+++ libpurple/protocols/msn/slplink.c	87ada76abf90c44e615679efc5f8128bb941bba1
@@ -383,6 +383,7 @@ msn_slplink_release_slpmsg(MsnSlpLink *s
 msn_slplink_release_slpmsg(MsnSlpLink *slplink, MsnSlpMessage *slpmsg)
 {
 	MsnMessage *msg;
+	const char *passport;
 
 	slpmsg->msg = msg = msn_message_new_msnslp();
 
@@ -421,7 +422,8 @@ msn_slplink_release_slpmsg(MsnSlpLink *s
 
 	msg->msnslp_header.total_size = slpmsg->size;
 
-	msn_message_set_attr(msg, "P2P-Dest", slplink->remote_user);
+	passport = purple_normalize(slplink->session->account, slplink->remote_user);
+	msn_message_set_attr(msg, "P2P-Dest", passport);
 
 	msg->ack_cb = msg_ack;
 	msg->nak_cb = msg_nak;


More information about the Packagers mailing list