diff options
author | Daniel Santos <dacs.git@brilhante.top> | 2023-04-14 07:16:42 +0100 |
---|---|---|
committer | Daniel Santos <dan.git@brilhante.top> | 2023-07-01 10:04:52 +0100 |
commit | d049e91590af343327990a25dc3371adceb9d54b (patch) | |
tree | 036d0d707364180ec5f6b9d5266ecfa0506b9b5d /src/xmpp | |
parent | 6247c28e3116d85efce0f6e39552241d6de80966 (diff) | |
download | profani-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/xmpp')
-rw-r--r-- | src/xmpp/connection.c | 2 | ||||
-rw-r--r-- | src/xmpp/iq.c | 2 | ||||
-rw-r--r-- | src/xmpp/ox.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c index 2a022cc4..3853a905 100644 --- a/src/xmpp/connection.c +++ b/src/xmpp/connection.c @@ -414,7 +414,7 @@ _register_handle_features(xmpp_conn_t* xmpp_conn, xmpp_stanza_t* stanza, void* u /* secure connection if possible */ child = xmpp_stanza_get_child_by_name(stanza, "starttls"); if (child && (strcmp(xmpp_stanza_get_ns(child), XMPP_NS_TLS) == 0)) { - log_debug("Server supports TLS. Attempting to establish…"); + log_debug("Server supports TLS. Attempting to establish..."); child = xmpp_stanza_new(ctx); xmpp_stanza_set_name(child, "starttls"); xmpp_stanza_set_ns(child, XMPP_NS_TLS); diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 159ba609..6903a412 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -2611,7 +2611,7 @@ static int _mam_buffer_commit_handler(xmpp_stanza_t* const stanza, void* const userdata) { ProfChatWin* chatwin = (ProfChatWin*)userdata; - // Remove the "Loading messages …" message + // Remove the "Loading messages ..." message buffer_remove_entry(((ProfWin*)chatwin)->layout->buffer, 0); chatwin_db_history(chatwin, NULL, NULL, TRUE); return 0; diff --git a/src/xmpp/ox.c b/src/xmpp/ox.c index 85fef800..c0e20744 100644 --- a/src/xmpp/ox.c +++ b/src/xmpp/ox.c @@ -91,7 +91,7 @@ ox_announce_public_key(const char* const filename) { assert(filename); - cons_show("Announce OpenPGP Key for OX %s …", filename); + cons_show("Announce OpenPGP Key for OX %s ...", filename); log_info("[OX] Announce OpenPGP Key of OX: %s", filename); // key the key and the fingerprint via GnuPG from file |