src/protocols/msn/utils.c

changeset 8923
cadbc8e3dfe2
parent 8921
5daa40528148
child 9090
2c7655380bf5
equal deleted inserted replaced
8922:6928d9a0338b 8923:cadbc8e3dfe2
183 183
184 for (c = html; *c != '\0';) 184 for (c = html; *c != '\0';)
185 { 185 {
186 if (*c == '<') 186 if (*c == '<')
187 { 187 {
188 if (!g_ascii_strncasecmp(c + 1, "i>", 2)) 188 if (!g_ascii_strncasecmp(c + 1, "br>", 3))
189 {
190 msg[retcount++] = '\r';
191 msg[retcount++] = '\n';
192 c += 4;
193 }
194 else if (!g_ascii_strncasecmp(c + 1, "i>", 2))
189 { 195 {
190 strcat(fonteffect, "I"); 196 strcat(fonteffect, "I");
191 c += 3; 197 c += 3;
192 } 198 }
193 else if (!g_ascii_strncasecmp(c + 1, "b>", 2)) 199 else if (!g_ascii_strncasecmp(c + 1, "b>", 2))

mercurial