about summary refs log tree commit diff stats
path: root/src/otr
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2023-04-14 07:16:42 +0100
committerDaniel Santos <dan.git@brilhante.top>2023-07-01 10:04:52 +0100
commitd049e91590af343327990a25dc3371adceb9d54b (patch)
tree036d0d707364180ec5f6b9d5266ecfa0506b9b5d /src/otr
parent6247c28e3116d85efce0f6e39552241d6de80966 (diff)
downloadprofani-tty-d049e91590af343327990a25dc3371adceb9d54b.tar.gz
Revert "Merge pull request #1821 from mdosch/use-proper-ellipsis-char"
This reverts commit 19921f61c14095cadc55b329dd7c8f02bdc79d31, reversing
changes made to ac581c29bfa7c31fbfb6fe8019d257d3883b33bb.
Diffstat (limited to 'src/otr')
-rw-r--r--src/otr/otr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/otr/otr.c b/src/otr/otr.c
index 857baa13..bbad51d5 100644
--- a/src/otr/otr.c
+++ b/src/otr/otr.c
@@ -304,7 +304,7 @@ otr_on_message_recv(const char* const barejid, const char* const resource, const
                 }
                 memmove(whitespace_base, whitespace_base + tag_length, tag_length);
                 char* otr_query_message = otr_start_query();
-                cons_show("OTR Whitespace pattern detected. Attempting to start OTR session…");
+                cons_show("OTR Whitespace pattern detected. Attempting to start OTR session...");
                 char* id = message_send_chat_otr(barejid, otr_query_message, FALSE, NULL);
                 free(id);
             }
@@ -318,7 +318,7 @@ otr_on_message_recv(const char* const barejid, const char* const resource, const
 
     if (policy == PROF_OTRPOLICY_ALWAYS && *decrypted == FALSE && !whitespace_base) {
         char* otr_query_message = otr_start_query();
-        cons_show("Attempting to start OTR session…");
+        cons_show("Attempting to start OTR session...");
         char* id = message_send_chat_otr(barejid, otr_query_message, FALSE, NULL);
         free(id);
     }