aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2011-01-23 16:32:07 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2011-01-23 16:32:07 +0000
commit02e06b5686650ddae5d9b1b3b2a09a89a7644cba (patch)
treecf224632b303c7a10cb92562fea40141102b4dbe
parent5282ffd40e07bbcbe4f5c796d054eeb7a1a275ee (diff)
Sneaky if statement is sneaky. The fix from the previous changeset didn't
work; it broke auth redirects. Fixing that now.
-rw-r--r--protocols/msn/soap.c4
1 files changed, 2 insertions, 2 deletions
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';