diff options
author | Diogo Sousa <diogogsousa@gmail.com> | 2013-10-08 23:59:36 +0100 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2013-10-09 21:34:02 -0400 |
commit | 5ad955236528d3962e63ce486bcbda2ee6896a63 (patch) | |
tree | 660321d8b6c38b47db64307c8585c826959d3c7c /src/fe-text | |
parent | 111a58f1ef3948d3e15c3aff5c5cbdbb7f1a4123 (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/fe-text')
-rw-r--r-- | src/fe-text/fe-text.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/fe-text/fe-text.c b/src/fe-text/fe-text.c index f5454dd2..b218e862 100644 --- a/src/fe-text/fe-text.c +++ b/src/fe-text/fe-text.c @@ -99,7 +99,7 @@ fe_new_window (struct session *sess, int focus) " \017This binary compiled \00310"__DATE__"\017\n", get_sys_str (1), glib_major_version, glib_minor_version, glib_micro_version); - fe_print_text (sess, buf, 0); + fe_print_text (sess, buf, 0, FALSE); fe_print_text (sess, "\n\nCompiled in Features\0032:\017 " #ifdef USE_PLUGIN @@ -114,7 +114,7 @@ fe_new_window (struct session *sess, int focus) #ifdef USE_IPV6 "IPv6" #endif - "\n\n", 0); + "\n\n", 0, FALSE); fflush (stdout); } @@ -144,7 +144,8 @@ timecat (char *buf, time_t stamp) static const short colconv[] = { 0, 7, 4, 2, 1, 3, 5, 11, 13, 12, 6, 16, 14, 15, 10, 7 }; void -fe_print_text (struct session *sess, char *text, time_t stamp) +fe_print_text (struct session *sess, char *text, time_t stamp, + gboolean no_activity) { int dotime = FALSE; char num[8]; @@ -312,7 +313,8 @@ fe_print_text (struct session *sess, char *text, time_t stamp) #else /* The win32 version for cmd.exe */ void -fe_print_text (struct session *sess, char *text, time_t stamp) +fe_print_text (struct session *sess, char *text, time_t stamp, + gboolean no_activity) { int dotime = FALSE; int comma, k, i = 0, j = 0, len = strlen (text); |