comparison src/protocols/oscar/locate.c @ 7313:be7c1468c6a7

[gaim-migrate @ 7897] I thought I commited some of this a while ago... oh well. None of it is really important at all. I uncommented the available message stuff, it might work for some people (Sam), but doesn't work for me. I don't want to have to comment this out again before 0.72... so someone get this working (Sam). committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 22 Oct 2003 03:32:21 +0000
parents 0ed0ac132b1b
children 83e8faa7f6d5
comparison
equal deleted inserted replaced
7312:b8ce6e194cff 7313:be7c1468c6a7
946 free(encoding); 946 free(encoding);
947 } else 947 } else
948 aim_tlvlist_add_noval(&tl, 0x0004); 948 aim_tlvlist_add_noval(&tl, 0x0004);
949 } 949 }
950 950
951 aim_tlvlist_add_caps(&tl, 0x0005, caps); 951 if (caps != 0x00000000)
952 aim_tlvlist_add_caps(&tl, 0x0005, caps);
952 953
953 if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_FLAP, 0x02, 10 + aim_tlvlist_size(&tl)))) 954 if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_FLAP, 0x02, 10 + aim_tlvlist_size(&tl))))
954 return -ENOMEM; 955 return -ENOMEM;
955 956
956 snacid = aim_cachesnac(sess, 0x0002, 0x0004, 0x0000, NULL, 0); 957 snacid = aim_cachesnac(sess, 0x0002, 0x0004, 0x0000, NULL, 0);