summary refs log tree commit diff stats
path: root/src/common/fe.h
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-10-08 23:59:36 +0100
committerTingPing <tingping@tingping.se>2013-10-09 21:34:02 -0400
commit5ad955236528d3962e63ce486bcbda2ee6896a63 (patch)
tree660321d8b6c38b47db64307c8585c826959d3c7c /src/common/fe.h
parent111a58f1ef3948d3e15c3aff5c5cbdbb7f1a4123 (diff)
Fix messages with server-time not showing as new activity
Added a parameter to fe_print_text() to say that the message does not represent
new activity. This is used when a log from an old session is loaded. This used
to be implicit whenever the timestamp was non-zero, but with server-time this no
longer makes sense.

Fixes issue #746.
Diffstat (limited to 'src/common/fe.h')
-rw-r--r--src/common/fe.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/fe.h b/src/common/fe.h
index 91bf0a5b..24fde989 100644
--- a/src/common/fe.h
+++ b/src/common/fe.h
@@ -86,7 +86,8 @@ void fe_text_clear (struct session *sess, int lines);
 void fe_close_window (struct session *sess);
 void fe_progressbar_start (struct session *sess);
 void fe_progressbar_end (struct server *serv);
-void fe_print_text (struct session *sess, char *text, time_t stamp);
+void fe_print_text (struct session *sess, char *text, time_t stamp,
+					gboolean no_activity);
 void fe_userlist_insert (struct session *sess, struct User *newuser, int row, int sel);
 int fe_userlist_remove (struct session *sess, struct User *user);
 void fe_userlist_rehash (struct session *sess, struct User *user);