changeset 3504:d7cefb94a978

[gaim-migrate @ 3568] Am I the only one who thought this was kinda stupid? committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 14 Sep 2002 07:28:10 +0000
parents 334315a42681
children 67b0832e9542
files ChangeLog src/protocols/msn/msn.c src/protocols/yahoo/yahoo.c
diffstat 3 files changed, 2 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Sep 14 05:25:43 2002 +0000
+++ b/ChangeLog	Sat Sep 14 07:28:10 2002 +0000
@@ -67,9 +67,7 @@
 	* Fixed a possible segfault when signing off Jabber (Thanks
 	  Craig Boston)
 	* Word-wrapping on mail notification text (Thanks, Andrew Molloy)
-	* Strip trailing and leading spaces from MSN/Yahoo names (Thanks,
-	  Arun Tharuvai)
-	* /topic when not an op now displays the current topic (Thanks Mark 
+	* /topic with no argument displays the current topic (Thanks Mark 
 	  Doliner)
 	* i18n fixes (Thanks Matt Wilson)
 
--- a/src/protocols/msn/msn.c	Sat Sep 14 05:25:43 2002 +0000
+++ b/src/protocols/msn/msn.c	Sat Sep 14 07:28:10 2002 +0000
@@ -162,10 +162,9 @@
 {
 	static char buf[BUF_LEN];
 
-	gchar * ss = g_strstrip(s);
 	g_return_val_if_fail(s != NULL, NULL);
 
-	g_snprintf(buf, sizeof(buf), "%s%s", ss, strchr(ss, '@') ? "" : "@hotmail.com");
+	g_snprintf(buf, sizeof(buf), "%s%s", s, strchr(s, '@') ? "" : "@hotmail.com");
 
 	return buf;
 }
--- a/src/protocols/yahoo/yahoo.c	Sat Sep 14 05:25:43 2002 +0000
+++ b/src/protocols/yahoo/yahoo.c	Sat Sep 14 07:28:10 2002 +0000
@@ -970,7 +970,6 @@
 	struct gaim_connection *gc = new_gaim_conn(user);
 	struct yahoo_data *yd = gc->proto_data = g_new0(struct yahoo_data, 1);
 
-	g_strstrip(gc->username);
 	set_login_progress(gc, 1, "Connecting");
 
 	yd->fd = -1;