Mercurial > pidgin
diff src/protocols/oscar/oscar.c @ 8514:ed1f3a8f0ccd
[gaim-migrate @ 9252]
Thanks to Stu Tomlinson for point this out.
ICQ offline messages should be properly escaped now.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 28 Mar 2004 17:18:06 +0000 |
parents | 9f1678878dc8 |
children | 91dae94b67a5 |
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c Sun Mar 28 09:32:24 2004 +0000 +++ b/src/protocols/oscar/oscar.c Sun Mar 28 17:18:06 2004 +0000 @@ -2689,9 +2689,9 @@ if (t) { /* This is an offline message */ /* I think this timestamp is in UTC, or something */ - serv_got_im(gc, uin, msg2[0], 0, t); + serv_got_im(gc, uin, tmp, 0, t); } else { /* This is a message from MacICQ/Miranda */ - serv_got_im(gc, uin, msg2[0], 0, time(NULL)); + serv_got_im(gc, uin, tmp, 0, time(NULL)); } g_free(uin); g_free(tmp);