# HG changeset patch # User Sean Egan # Date 1031988490 0 # Node ID d7cefb94a9788d5f27894d9b11ef34fb3d5c4543 # Parent 334315a4268154dfb4aa4822dbaf91c2c5404fa5 [gaim-migrate @ 3568] Am I the only one who thought this was kinda stupid? committer: Tailor Script diff -r 334315a42681 -r d7cefb94a978 ChangeLog --- 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) diff -r 334315a42681 -r d7cefb94a978 src/protocols/msn/msn.c --- 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; } diff -r 334315a42681 -r d7cefb94a978 src/protocols/yahoo/yahoo.c --- 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;