diff src/protocols/oscar/admin.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 ecc0f22db510
children
line wrap: on
line diff
--- a/src/protocols/oscar/admin.c	Thu Jun 09 04:33:52 2005 +0000
+++ b/src/protocols/oscar/admin.c	Thu Jun 09 04:38:10 2005 +0000
@@ -110,7 +110,7 @@
 	snacid = aim_cachesnac(sess, 0x0007, 0x0004, 0x0000, NULL, 0);
 	aim_putsnac(&fr->data, 0x0007, 0x0004, 0x0000, snacid);
 
-	aim_tlvlist_add_string(&tl, 0x0001, newnick);
+	aim_tlvlist_add_str(&tl, 0x0001, newnick);
 
 	aim_tlvlist_write(&fr->data, &tl);
 	aim_tlvlist_free(&tl);
@@ -138,10 +138,10 @@
 	aim_putsnac(&fr->data, 0x0007, 0x0004, 0x0000, snacid);
 
 	/* new password TLV t(0002) */
-	aim_tlvlist_add_string(&tl, 0x0002, newpw);
+	aim_tlvlist_add_str(&tl, 0x0002, newpw);
 
 	/* current password TLV t(0012) */
-	aim_tlvlist_add_string(&tl, 0x0012, curpw);
+	aim_tlvlist_add_str(&tl, 0x0012, curpw);
 
 	aim_tlvlist_write(&fr->data, &tl);
 	aim_tlvlist_free(&tl);
@@ -167,7 +167,7 @@
 	snacid = aim_cachesnac(sess, 0x0007, 0x0004, 0x0000, NULL, 0);
 	aim_putsnac(&fr->data, 0x0007, 0x0004, 0x0000, snacid);
 
-	aim_tlvlist_add_string(&tl, 0x0011, newemail);
+	aim_tlvlist_add_str(&tl, 0x0011, newemail);
 	
 	aim_tlvlist_write(&fr->data, &tl);
 	aim_tlvlist_free(&tl);