diff libpurple/protocols/msn/slp.c @ 30101:7f564cf26ea3

I think it's more accurate to say that a DC is a P2P transfer, so if that fails, we're falling back to SB, not P2P.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Wed, 26 May 2010 23:20:18 +0000
parents 3c09870e8564
children fc93bc1a546f
line wrap: on
line diff
--- a/libpurple/protocols/msn/slp.c	Wed May 26 23:15:06 2010 +0000
+++ b/libpurple/protocols/msn/slp.c	Wed May 26 23:20:18 2010 +0000
@@ -360,7 +360,7 @@
 
 			} else {
 				/* We weren't able to create a listener either. Use SB. */
-				msn_dc_fallback_to_p2p(dc);
+				msn_dc_fallback_to_sb(dc);
 			}
 
 		} else {
@@ -939,7 +939,7 @@
 	if (type && !strcmp(type, "application/x-msnmsgr-transreqbody")) {
 		MsnDirectConn *dc = slpcall->slplink->dc;
 		if (dc) {
-			msn_dc_fallback_to_p2p(dc);
+			msn_dc_fallback_to_sb(dc);
 			return;
 		}
 	}