aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/msn/soap.c
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/msn/soap.c')
-rw-r--r--protocols/msn/soap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/msn/soap.c b/protocols/msn/soap.c
index c23d190a..5eae3089 100644
--- a/protocols/msn/soap.c
+++ b/protocols/msn/soap.c
@@ -50,6 +50,9 @@ typedef enum
MSN_SOAP_ABORT,
} msn_soap_result_t;
+struct msn_soap_req_data;
+typedef int (*msn_soap_func) ( struct msn_soap_req_data * );
+
struct msn_soap_req_data
{
void *data;
@@ -63,8 +66,6 @@ struct msn_soap_req_data
msn_soap_func build_request, handle_response, free_data;
};
-typedef int (*msn_soap_func) ( struct msn_soap_req_data * );
-
static int msn_soap_send_request( struct msn_soap_req_data *req );
static int msn_soap_start( struct im_connection *ic,
@@ -526,7 +527,6 @@ static xt_status msn_soap_addressbook_group( struct xt_node *node, gpointer data
struct xt_node *p;
char *id = NULL, *name = NULL;
struct msn_soap_req_data *soap_req = data;
- struct im_connection *ic = soap_req->ic;
if( ( p = node->parent ) &&
( p = xt_find_node( p->children, "groupId" ) ) )