about summary refs log tree commit diff stats
path: root/src/xmpp/connection.c
diff options
context:
space:
mode:
authorMartin Dosch <martin@mdosch.de>2023-04-09 12:19:18 +0200
committerMartin Dosch <martin@mdosch.de>2023-04-09 12:19:18 +0200
commite1ffc64a653033cc3f6c1e4d412a24985c8c45a0 (patch)
tree14981e6daaff41e57560c957f51984c9f5d2500b /src/xmpp/connection.c
parentac581c29bfa7c31fbfb6fe8019d257d3883b33bb (diff)
downloadprofani-tty-e1ffc64a653033cc3f6c1e4d412a24985c8c45a0.tar.gz
User proper ellipsis char
As stated in
https://github.com/profanity-im/profanity/pull/1820#issuecomment-1498083383
profanity uses "..." (three dots) in a lot of places instead the proper
ellipsis char "…".
Diffstat (limited to 'src/xmpp/connection.c')
-rw-r--r--src/xmpp/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c
index 3eca29c4..9c398c73 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);