diff src/protocols/msn/msn.c @ 7134:67f9b43c402a

[gaim-migrate @ 7701] I think this is the fifth Yahoo authentication method Gaim's seen in its days. Please tell me if anything stops working. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Fri, 03 Oct 2003 23:01:13 +0000
parents bf630f7dfdcd
children aeaa751d32f7
line wrap: on
line diff
--- a/src/protocols/msn/msn.c	Fri Oct 03 21:57:44 2003 +0000
+++ b/src/protocols/msn/msn.c	Fri Oct 03 23:01:13 2003 +0000
@@ -72,7 +72,7 @@
 	}
 
 	g_snprintf(outparams, sizeof(outparams), "%s %s",
-			   gaim_account_get_username(account), msn_url_encode(alias));
+			   gaim_account_get_username(account), gaim_url_encode(alias));
 
 	g_free(alias);
 
@@ -94,7 +94,7 @@
 		g_snprintf(outparams, sizeof(outparams), "%s  ", type);
 	else
 		g_snprintf(outparams, sizeof(outparams), "%s %s", type,
-				   msn_url_encode(entry));
+				   gaim_url_encode(entry));
 
 	if (!msn_servconn_send_command(session->notification_conn,
 								   "PRP", outparams)) {
@@ -1066,7 +1066,7 @@
 
 	if (new_group == NULL) {
 		g_snprintf(outparams, sizeof(outparams), "%s 0",
-				   msn_url_encode(new_group_name));
+				   gaim_url_encode(new_group_name));
 
 		if (!msn_servconn_send_command(session->notification_conn,
 									   "ADG", outparams)) {
@@ -1086,7 +1086,7 @@
 	}
 	else {
 		g_snprintf(outparams, sizeof(outparams), "FL %s %s %d",
-				   who, msn_url_encode(friendly),
+				   who, gaim_url_encode(friendly),
 				   msn_group_get_id(new_group));
 
 		if (!msn_servconn_send_command(session->notification_conn,
@@ -1133,7 +1133,7 @@
 
 		g_snprintf(outparams, sizeof(outparams), "%d %s 0",
 				   msn_group_get_id(old_group),
-				   msn_url_encode(new_group_name));
+				   gaim_url_encode(new_group_name));
 
 		if (!msn_servconn_send_command(session->notification_conn,
 									   "REG", outparams)) {
@@ -1145,7 +1145,7 @@
 	}
 	else {
 		g_snprintf(outparams, sizeof(outparams), "%s 0",
-				   msn_url_encode(new_group_name));
+				   gaim_url_encode(new_group_name));
 
 		if (!msn_servconn_send_command(session->notification_conn,
 									   "ADG", outparams)) {