diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-08 18:29:43 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-08 18:29:43 +0100 |
commit | 5fecede7db56a41cf9d6ecb2b821f5a833ce0f59 (patch) | |
tree | 5536020b4bae8a516e625020561101de281dccdd /protocols/msn/soap.c | |
parent | 2528cdad90271f80d2ffe0e679ff8258f3e94e4c (diff) |
Enough changes to successfully login up to (but not including) fetching the
contact list.
Diffstat (limited to 'protocols/msn/soap.c')
-rw-r--r-- | protocols/msn/soap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/msn/soap.c b/protocols/msn/soap.c index 82ecfea2..4d623a9d 100644 --- a/protocols/msn/soap.c +++ b/protocols/msn/soap.c @@ -154,7 +154,8 @@ static int msn_soap_oim_build_request( struct msn_soap_req_data *soap_req ) soap_req->action = g_strdup( SOAP_OIM_ACTION_URL ); soap_req->payload = g_markup_printf_escaped( SOAP_OIM_SEND_PAYLOAD, ic->acc->user, display_name_b64, oim->to, md->passport_token, - MSNP11_PROD_ID, md->lock_key ? : "", oim->number, oim->number, oim->msg ); + MSNP11_PROD_ID, md->lock_key ? md->lock_key : "", + oim->number, oim->number, oim->msg ); g_free( display_name_b64 ); |