Mercurial > pidgin
diff src/protocols/oscar/oscar.c @ 7095:c8bf2da398e3
[gaim-migrate @ 7660]
html.[ch] is gone. Everything inside was namespaced and put in util.[ch].
One less ugly part of gaim in the tree.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Wed, 01 Oct 2003 03:43:18 +0000 |
parents | 3650612c7daa |
children | 770233dad86c |
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c Wed Oct 01 03:01:25 2003 +0000 +++ b/src/protocols/oscar/oscar.c Wed Oct 01 03:43:18 2003 +0000 @@ -41,7 +41,6 @@ #include "proxy.h" #include "request.h" #include "util.h" -#include "html.h" #include "aim.h" #include "md5.h" @@ -5279,7 +5278,7 @@ if (strlen(buf) > c->maxlen) return -E2BIG; - buf2 = strip_html(buf); + buf2 = gaim_markup_strip_html(buf); if (strlen(buf2) > c->maxvis) { g_free(buf2); return -E2BIG; @@ -5418,7 +5417,7 @@ if (away_utf8 != NULL) { gchar *tmp1, *tmp2; tmp1 = gaim_strreplace(away_utf8, "<BR>", "\n"); - tmp2 = strip_html(tmp1); + tmp2 = gaim_markup_strip_html(tmp1); g_free(tmp1); tmp1 = away_subs(tmp2, gaim_connection_get_display_name(gc)); g_free(tmp2);