gaim/gaim

sf patch #680837, from Carl-Daniel Hailfinger
oldstatus
2005-02-22, Mark Doliner
683008a5411b
Parents c0f694f32e98
Children 8edf0358144f
sf patch #680837, from Carl-Daniel Hailfinger
Display sending time in Gadu-gadu messages
--- a/ChangeLog Tue Feb 22 23:01:50 2005 -0500
+++ b/ChangeLog Tue Feb 22 23:21:51 2005 -0500
@@ -3,6 +3,7 @@
version 1.1.4
* Fixed a bug where Yahoo! would lose messages (and any other packet
really)
+ * Correctly show the time when incoming Gadu-Gadu messages were sent
version 1.1.3 (2/17/2005):
* CHAP authentication support for SOCKS5 proxies (Malcolm Smith)
--- a/src/protocols/gg/gg.c Tue Feb 22 23:01:50 2005 -0500
+++ b/src/protocols/gg/gg.c Tue Feb 22 23:21:51 2005 -0500
@@ -480,8 +480,7 @@
imsg = charset_convert(e->event.msg.message, "CP1250", "UTF-8");
gaim_str_strip_cr(imsg);
jmsg = gaim_escape_html(imsg);
- /* e->event.msg.time - we don't know what this time is for */
- serv_got_im(gc, user, jmsg, 0, time(NULL));
+ serv_got_im(gc, user, jmsg, 0, e->event.msg.time);
g_free(imsg);
g_free(jmsg);
}