comparison libpurple/protocols/msn/contact.c @ 30732:767fd05c434d

Oops, this one needed to be changed too.
author masca@cpw.pidgin.im
date Tue, 25 May 2010 21:17:30 +0000
parents 452043d200f0
children a99b6dcdb60d
comparison
equal deleted inserted replaced
30731:02dc01aa8c07 30732:767fd05c434d
28 #include "contact.h" 28 #include "contact.h"
29 #include "xmlnode.h" 29 #include "xmlnode.h"
30 #include "group.h" 30 #include "group.h"
31 #include "soap.h" 31 #include "soap.h"
32 #include "nexus.h" 32 #include "nexus.h"
33 #include "user.h"
33 34
34 const char *MsnSoapPartnerScenarioText[] = 35 const char *MsnSoapPartnerScenarioText[] =
35 { 36 {
36 "Initial", 37 "Initial",
37 "ContactSave", 38 "ContactSave",
1165 } 1166 }
1166 1167
1167 msn_userlist_add_buddy_to_list(userlist, state->who, MSN_LIST_AL); 1168 msn_userlist_add_buddy_to_list(userlist, state->who, MSN_LIST_AL);
1168 msn_userlist_add_buddy_to_list(userlist, state->who, MSN_LIST_FL); 1169 msn_userlist_add_buddy_to_list(userlist, state->who, MSN_LIST_FL);
1169 1170
1170 if (msn_userlist_user_is_in_list(user, MSN_LIST_PL)) { 1171 if (msn_user_is_in_list(user, MSN_LIST_PL)) {
1171 msn_del_contact_from_list(state->session, NULL, state->who, MSN_LIST_PL); 1172 msn_del_contact_from_list(state->session, NULL, state->who, MSN_LIST_PL);
1172 return; 1173 return;
1173 } 1174 }
1174 } 1175 }
1175 1176