diff src/buddy.c @ 1764:1e0613d9526b

[gaim-migrate @ 1774] I decided to do the time stamp w/ messages thing that Eric put in the TODO list. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 27 Apr 2001 23:26:19 +0000
parents d2eca7a46cfd
children 60b3fd819cce
line wrap: on
line diff
--- a/src/buddy.c	Fri Apr 27 22:21:53 2001 +0000
+++ b/src/buddy.c	Fri Apr 27 23:26:19 2001 +0000
@@ -1729,7 +1729,7 @@
 						g_slist_index(connections, u->gc));
 				update_buttons_by_protocol(c);
 
-                        	write_to_conv(c, b->message, WFLAG_SEND, NULL);
+                        	write_to_conv(c, b->message, WFLAG_SEND, NULL, time((time_t)NULL));
                                 serv_send_im(u->gc, name, b->message, 0);
 			}
 			if (b->options & OPT_POUNCE_COMMAND)
@@ -2275,7 +2275,7 @@
 				if (c) {
 					char tmp[1024];
 					g_snprintf(tmp, sizeof(tmp), _("%s logged in."), b->name);
-					write_to_conv(c, tmp, WFLAG_SYSTEM, NULL);
+					write_to_conv(c, tmp, WFLAG_SYSTEM, NULL, time((time_t)NULL));
 				}
 			}
 			bs->sound = 2;
@@ -2327,7 +2327,7 @@
 			if (c) {
 				char tmp[1024];
 				g_snprintf(tmp, sizeof(tmp), _("%s logged out."), b->name);
-				write_to_conv(c, tmp, WFLAG_SYSTEM, NULL);
+				write_to_conv(c, tmp, WFLAG_SYSTEM, NULL, time((time_t)NULL));
 			}
 		}