diff src/protocols/msn/msn.c @ 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 4b204c262376
children 9431b31f8f62
line wrap: on
line diff
--- 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;
 }