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.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index 967a379f..3a65b270 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -1108,6 +1108,17 @@ ui_otr_authetication_waiting(const char * const barejid)
 }
 
 void
+ui_handle_otr_error(const char * const barejid, const char * const message)
+{
+    ProfChatWin *chatwin = wins_get_chat(barejid);
+    if (chatwin) {
+        win_save_print((ProfWin*)chatwin, '!', NULL, 0, THEME_ERROR, "", message);
+    } else {
+        cons_show_error(message);
+    }
+}
+
+void
 ui_trust(const char * const barejid)
 {
     ProfChatWin *chatwin = wins_get_chat(barejid);