comparison src/protocols/msn/msn.c @ 8735:92cbf9713795

[gaim-migrate @ 9490] Patch by Jonathan Champ to corect the vairous speling mistakes we hav e in the coments and documentaion. Thansk Jonathan! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 21 Apr 2004 01:34:26 +0000
parents 7024b595b6ae
children d7b8eb1f0a18
comparison
equal deleted inserted replaced
8734:407c122d6191 8735:92cbf9713795
1369 { 1369 {
1370 memmove(p, p + 1, strlen(p + 1)); 1370 memmove(p, p + 1, strlen(p + 1));
1371 url_buffer[strlen(url_buffer) - 1] = '\0'; 1371 url_buffer[strlen(url_buffer) - 1] = '\0';
1372 } 1372 }
1373 1373
1374 /* MSN always puts in &#39; for apostrophies...replace them */ 1374 /* MSN always puts in &#39; for apostrophes...replace them */
1375 while ((p = strstr(url_buffer, "&#39;")) != NULL) 1375 while ((p = strstr(url_buffer, "&#39;")) != NULL)
1376 { 1376 {
1377 *p = '\''; 1377 *p = '\'';
1378 memmove(p + 1, p + 5, strlen(p + 5)); 1378 memmove(p + 1, p + 5, strlen(p + 5));
1379 url_buffer[strlen(url_buffer) - 4] = '\0'; 1379 url_buffer[strlen(url_buffer) - 4] = '\0';