comparison src/list.c @ 4442:fd53864d880f

[gaim-migrate @ 4717] *grumbles* committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 28 Jan 2003 06:19:06 +0000
parents 474a0a88dd5e
children fd83159169db
comparison
equal deleted inserted replaced
4441:474a0a88dd5e 4442:fd53864d880f
880 struct aim_user *user = find_user(blist_parser_account_name, 880 struct aim_user *user = find_user(blist_parser_account_name,
881 blist_parser_account_protocol); 881 blist_parser_account_protocol);
882 if(user) { 882 if(user) {
883 gaim_privacy_permit_add(user, blist_parser_buddy_name); 883 gaim_privacy_permit_add(user, blist_parser_buddy_name);
884 } 884 }
885 g_free(blist_parser_buddy_name);
885 blist_parser_current_tag = BLIST_TAG_ACCOUNT; 886 blist_parser_current_tag = BLIST_TAG_ACCOUNT;
886 } else if(!strcmp(element_name, "block")) { 887 } else if(!strcmp(element_name, "block")) {
887 struct aim_user *user = find_user(blist_parser_account_name, 888 struct aim_user *user = find_user(blist_parser_account_name,
888 blist_parser_account_protocol); 889 blist_parser_account_protocol);
889 if(user) { 890 if(user) {
890 gaim_privacy_deny_add(user, blist_parser_buddy_name); 891 gaim_privacy_deny_add(user, blist_parser_buddy_name);
891 } 892 }
893 g_free(blist_parser_buddy_name);
892 blist_parser_current_tag = BLIST_TAG_ACCOUNT; 894 blist_parser_current_tag = BLIST_TAG_ACCOUNT;
893 } else if(!strcmp(element_name, "ignore")) { 895 } else if(!strcmp(element_name, "ignore")) {
894 /* we'll apparently do something with this later */ 896 /* we'll apparently do something with this later */
895 blist_parser_current_tag = BLIST_TAG_ACCOUNT; 897 blist_parser_current_tag = BLIST_TAG_ACCOUNT;
896 } 898 }