From 02e06b5686650ddae5d9b1b3b2a09a89a7644cba Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Sun, 23 Jan 2011 16:32:07 +0000 Subject: Sneaky if statement is sneaky. The fix from the previous changeset didn't work; it broke auth redirects. Fixing that now. --- protocols/msn/soap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols') diff --git a/protocols/msn/soap.c b/protocols/msn/soap.c index 4e4dc9d9..dac46a75 100644 --- a/protocols/msn/soap.c +++ b/protocols/msn/soap.c @@ -282,9 +282,9 @@ static int msn_soap_passport_sso_build_request( struct msn_soap_req_data *soap_r second, but that's better than not being able to log in at all. :-/ else if( g_str_has_suffix( ic->acc->user, "@msn.com" ) ) soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL_MSN ); - else */ - soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL ); + else + soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL ); strncpy( pass, ic->acc->pass, MAX_PASSPORT_PWLEN ); pass[MAX_PASSPORT_PWLEN] = '\0'; -- cgit v1.2.3