degesch: add an error buffer line type

This commit is contained in:
Přemysl Eric Janouch 2015-04-15 13:18:07 +02:00
parent c2c9d4dc58
commit 06857c6bbb
1 changed files with 5 additions and 1 deletions

View File

@ -114,7 +114,8 @@ enum buffer_line_type
BUFFER_LINE_PART, ///< PART
BUFFER_LINE_KICK, ///< KICK
BUFFER_LINE_QUIT, ///< QUIT
BUFFER_LINE_STATUS ///< Whatever status messages
BUFFER_LINE_STATUS, ///< Whatever status messages
BUFFER_LINE_ERROR ///< Whatever error messages
};
struct buffer_line
@ -733,6 +734,9 @@ buffer_line_display (struct app_context *ctx, struct buffer_line *line)
break;
case BUFFER_LINE_STATUS:
str_append_printf (&text, " - %s", object);
break;
case BUFFER_LINE_ERROR:
str_append_printf (&text, "=!= %s", object);
}
free (who);