about summary refs log tree commit diff stats
path: root/src/ui/core.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/core.c')
-rw-r--r--src/ui/core.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index e959e94e..07434e2f 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -246,13 +246,13 @@ _ui_handle_stanza(const char * const msg)
         ProfWin *xmlconsole = wins_get_xmlconsole();
 
         if (g_str_has_prefix(msg, "SENT:")) {
-            win_save_print(xmlconsole, '-', NULL, NO_DATE, 0, "", "SENT:");
-            win_save_print(xmlconsole, '-', NULL, NO_DATE, COLOUR_ONLINE, "", &msg[6]);
-            win_save_print(xmlconsole, '-', NULL, NO_DATE, COLOUR_ONLINE, "", "");
+            win_save_print(xmlconsole, '-', NULL, 0, 0, "", "SENT:");
+            win_save_print(xmlconsole, '-', NULL, 0, COLOUR_ONLINE, "", &msg[6]);
+            win_save_print(xmlconsole, '-', NULL, 0, COLOUR_ONLINE, "", "");
         } else if (g_str_has_prefix(msg, "RECV:")) {
-            win_save_print(xmlconsole, '-', NULL, NO_DATE, 0, "", "RECV:");
-            win_save_print(xmlconsole, '-', NULL, NO_DATE, COLOUR_AWAY, "", &msg[6]);
-            win_save_print(xmlconsole, '-', NULL, NO_DATE, COLOUR_AWAY, "", "");
+            win_save_print(xmlconsole, '-', NULL, 0, 0, "", "RECV:");
+            win_save_print(xmlconsole, '-', NULL, 0, COLOUR_AWAY, "", &msg[6]);
+            win_save_print(xmlconsole, '-', NULL, 0, COLOUR_AWAY, "", "");
         }
     }
 }
@@ -3216,4 +3216,3 @@ ui_init_module(void)
     ui_room_occupant_role_and_affiliation_change = _ui_room_occupant_role_and_affiliation_change;
     ui_redraw_all_room_rosters = _ui_redraw_all_room_rosters;
 }
-