diff options
author | James Booth <boothj5@gmail.com> | 2015-08-26 00:42:56 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-08-26 00:42:56 +0100 |
commit | f998ab8f3b71922ad20646dc4598cd61d2e7bc36 (patch) | |
tree | 0cc088b975dc06d3b516f5f136c1dad2b9222157 /src/otr | |
parent | 4b0ee89fa3dca49604532c0185cf48cf601ac08a (diff) | |
download | profani-tty-f998ab8f3b71922ad20646dc4598cd61d2e7bc36.tar.gz |
Display special char for encrypted messages
Diffstat (limited to 'src/otr')
-rw-r--r-- | src/otr/otr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/otr/otr.c b/src/otr/otr.c index 53433642..7953733d 100644 --- a/src/otr/otr.c +++ b/src/otr/otr.c @@ -325,7 +325,7 @@ otr_on_message_send(ProfChatWin *chatwin, const char * const message) if (encrypted) { id = message_send_chat_otr(chatwin->barejid, encrypted); chat_log_otr_msg_out(chatwin->barejid, message); - ui_outgoing_chat_msg(chatwin, message, id); + ui_outgoing_chat_msg(chatwin, message, id, PROF_ENC_OTR); otr_free_message(encrypted); free(id); return TRUE; @@ -345,7 +345,7 @@ otr_on_message_send(ProfChatWin *chatwin, const char * const message) if (policy == PROF_OTRPOLICY_OPPORTUNISTIC) { char *otr_tagged_msg = otr_tag_message(message); id = message_send_chat_otr(chatwin->barejid, otr_tagged_msg); - ui_outgoing_chat_msg(chatwin, message, id); + ui_outgoing_chat_msg(chatwin, message, id, PROF_ENC_NONE); chat_log_msg_out(chatwin->barejid, message); free(otr_tagged_msg); free(id); |