Mercurial > pidgin.yaz
changeset 28586:26ce61fc9556
These should actually be 0x03, I think. I think it's a bitmask where
the value 0x01 means "I'm a recent client" and the value 0x02 means
"I don't want multiple instances"
From http://dev.aol.com/aim/oscar/#FLAP__MULTICONN_FLAGS
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 06 Sep 2009 20:59:54 +0000 |
parents | 60ab4bdea3c3 |
children | 98c5109a3d1f |
files | libpurple/protocols/oscar/family_auth.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/oscar/family_auth.c Sun Sep 06 01:46:42 2009 +0000 +++ b/libpurple/protocols/oscar/family_auth.c Sun Sep 06 20:59:54 2009 +0000 @@ -277,7 +277,7 @@ * If set, old-fashioned buddy lists will not work. You will need * to use SSI. */ - aim_tlvlist_add_8(&tlvlist, 0x004a, (allow_multiple_logins ? 0x01 : 0x02)); + aim_tlvlist_add_8(&tlvlist, 0x004a, (allow_multiple_logins ? 0x01 : 0x03)); aim_tlvlist_write(&frame->data, &tlvlist);