comparison libpurple/protocols/msn/soap.c @ 20770:58ce69a8582d

Correctly remove a buddy from the Pending list after it is accepted.
author Carlos Silva <typ0@pidgin.im>
date Thu, 04 Oct 2007 01:40:20 +0000
parents 989f5906ca17
children d1e8f4d63f01
comparison
equal deleted inserted replaced
20765:53691c081eab 20770:58ce69a8582d
763 763
764 /*post the soap request , 764 /*post the soap request ,
765 * if not connected, Connected first. 765 * if not connected, Connected first.
766 */ 766 */
767 void 767 void
768 msn_soap_post(MsnSoapConn *soapconn,MsnSoapReq *request) 768 msn_soap_post(MsnSoapConn *soapconn, MsnSoapReq *request)
769 { 769 {
770 MsnSoapReq *head_request; 770 MsnSoapReq *head_request;
771 771
772 if (soapconn == NULL) 772 if (soapconn == NULL)
773 return; 773 return;
807 } 807 }
808 msn_soap_connect(soapconn); 808 msn_soap_connect(soapconn);
809 return; 809 return;
810 } 810 }
811 811
812 #ifdef MSN_SOAP_DEBUG
812 purple_debug_info("MSN SOAP", "Currently processing another SOAP request\n"); 813 purple_debug_info("MSN SOAP", "Currently processing another SOAP request\n");
813 } else { 814 } else {
814 purple_debug_info("MSN SOAP", "No requests left to dispatch\n"); 815 purple_debug_info("MSN SOAP", "No requests left to dispatch\n");
815 } 816 }
817 #else
818 }
819 #endif
820
816 } 821 }
817 822
818 /*Post the soap request action*/ 823 /*Post the soap request action*/
819 void 824 void
820 msn_soap_post_request(MsnSoapConn *soapconn, MsnSoapReq *request) 825 msn_soap_post_request(MsnSoapConn *soapconn, MsnSoapReq *request)