diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2011-01-23 16:32:07 +0000 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2011-01-23 16:32:07 +0000 | 
| commit | 02e06b5686650ddae5d9b1b3b2a09a89a7644cba (patch) | |
| tree | cf224632b303c7a10cb92562fea40141102b4dbe /protocols | |
| parent | 5282ffd40e07bbcbe4f5c796d054eeb7a1a275ee (diff) | |
Sneaky if statement is sneaky. The fix from the previous changeset didn't
work; it broke auth redirects. Fixing that now.
Diffstat (limited to 'protocols')
| -rw-r--r-- | protocols/msn/soap.c | 4 | 
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'; | 
