diff mcabber/src/screen.c @ 325:ff6fb51bfd78

Handle "error" message type
author Mikael Berthe <mikael@lilotux.net>
date Sat, 16 Jul 2005 13:27:00 +0100
parents da138cdebf04
children 83d129adde03
line wrap: on
line diff
--- a/mcabber/src/screen.c	Fri Jul 15 22:27:07 2005 +0100
+++ b/mcabber/src/screen.c	Sat Jul 16 13:27:00 2005 +0100
@@ -329,6 +329,13 @@
         else if (line->flags & HBB_PREFIX_OUT)
           dir = '>';
         wprintw(win_entry->win, "%.11s *%c* ", date, dir);
+      } else if (line->flags & HBB_PREFIX_ERR) {
+        char dir = '#';
+        if (line->flags & HBB_PREFIX_IN)
+          dir = '<';
+        else if (line->flags & HBB_PREFIX_OUT)
+          dir = '>';
+        wprintw(win_entry->win, "%.11s #%c# ", date, dir);
       } else if (line->flags & HBB_PREFIX_IN)
         wprintw(win_entry->win, "%.11s <== ", date);
       else if (line->flags & HBB_PREFIX_OUT)