# HG changeset patch # User Sean Egan # Date 1190188335 0 # Node ID a36fe4add25a9c74d704c9ce7927b6c4f0d47bfa # Parent 87ce3da53550737b16cca375ade1e7728e8fcce2 remove stripping of hard-coded domain names, and just strip anything that starts with (http. Fixes #1618 diff -r 87ce3da53550 -r a36fe4add25a libpurple/protocols/msn/msn.c --- a/libpurple/protocols/msn/msn.c Wed Sep 19 07:40:17 2007 +0000 +++ b/libpurple/protocols/msn/msn.c Wed Sep 19 07:52:15 2007 +0000 @@ -1573,8 +1573,7 @@ msn_info_strip_search_link(const char *field, size_t len) { const char *c; - if ((c = strstr(field, " (http://spaces.live.com/default.aspx?page=searchresults")) == NULL && - (c = strstr(field, " (http://spaces.msn.com/default.aspx?page=searchresults")) == NULL) + if ((c = strstr(field, " (http://")) == NULL)) return g_strndup(field, len); return g_strndup(field, c - field); }