comparison src/protocols/msn/utils.c @ 5964:b583de5880bc

[gaim-migrate @ 6411] fix for bug 682553, as per 2 line patch provided. many thanks to young1 for figuring it out committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 27 Jun 2003 18:33:55 +0000
parents 89948fedf782
children 13a37cacd10b
comparison
equal deleted inserted replaced
5963:eb336b2c451f 5964:b583de5880bc
84 msn_parse_format(const char *mime) 84 msn_parse_format(const char *mime)
85 { 85 {
86 char *cur; 86 char *cur;
87 GString *ret = g_string_new(NULL); 87 GString *ret = g_string_new(NULL);
88 guint colorbuf; 88 guint colorbuf;
89 char *colors = (char *)(&colorbuf); 89 unsigned char *colors = (unsigned char *)(&colorbuf);
90 90
91 cur = strstr(mime, "FN="); 91 cur = strstr(mime, "FN=");
92 92
93 if (cur && (*(cur = cur + 3) != ';')) { 93 if (cur && (*(cur = cur + 3) != ';')) {
94 ret = g_string_append(ret, "<FONT FACE=\""); 94 ret = g_string_append(ret, "<FONT FACE=\"");