Mercurial > pidgin
comparison src/protocols/oscar/ssi.c @ 10991:1798ad0be460
[gaim-migrate @ 12829]
Rename aim_tlvlist_add_string to aim_tlvlist_add_str.
Yes, that's one of the functions I just added.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 09 Jun 2005 04:38:10 +0000 |
parents | 8d74ae785a46 |
children | b6ca6d3c5332 |
comparison
equal
deleted
inserted
replaced
10990:8d74ae785a46 | 10991:1798ad0be460 |
---|---|
720 | 720 |
721 /* Create a TLV list for the new buddy */ | 721 /* Create a TLV list for the new buddy */ |
722 if (needauth) | 722 if (needauth) |
723 aim_tlvlist_add_noval(&data, 0x0066); | 723 aim_tlvlist_add_noval(&data, 0x0066); |
724 if (alias) | 724 if (alias) |
725 aim_tlvlist_add_string(&data, 0x0131, alias); | 725 aim_tlvlist_add_str(&data, 0x0131, alias); |
726 if (smsnum) | 726 if (smsnum) |
727 aim_tlvlist_add_string(&data, 0x013a, smsnum); | 727 aim_tlvlist_add_str(&data, 0x013a, smsnum); |
728 if (comment) | 728 if (comment) |
729 aim_tlvlist_add_string(&data, 0x013c, comment); | 729 aim_tlvlist_add_str(&data, 0x013c, comment); |
730 | 730 |
731 /* Add that bad boy */ | 731 /* Add that bad boy */ |
732 aim_ssi_itemlist_add(&sess->ssi.local, name, parent->gid, 0xFFFF, AIM_SSI_TYPE_BUDDY, data); | 732 aim_ssi_itemlist_add(&sess->ssi.local, name, parent->gid, 0xFFFF, AIM_SSI_TYPE_BUDDY, data); |
733 aim_tlvlist_free(&data); | 733 aim_tlvlist_free(&data); |
734 | 734 |