From 8cf2aa55863cd34849426e95e2e3e9bccb18eba1 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 16 Oct 2022 11:18:44 +0100 Subject: [PATCH] Make it more clear that /SERVER and /SERVCHAN use SSL by default. --- src/common/outbound.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/outbound.c b/src/common/outbound.c index 5c4e01b0..b9f88196 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -4117,14 +4117,14 @@ const struct commands xc_cmds[] = { {"SEND", cmd_send, 0, 0, 1, N_("SEND []")}, #ifdef USE_OPENSSL {"SERVCHAN", cmd_servchan, 0, 0, 1, - N_("SERVCHAN [-insecure|-ssl|-ssl-noverify] , connects and joins a channel")}, + N_("SERVCHAN [-insecure|-ssl|-ssl-noverify] , connects and joins a channel using ssl unless otherwise specified")}, #else {"SERVCHAN", cmd_servchan, 0, 0, 1, N_("SERVCHAN , connects and joins a channel")}, #endif #ifdef USE_OPENSSL {"SERVER", cmd_server, 0, 0, 1, - N_("SERVER [-insecure|-ssl|-ssl-noverify] [] [], connects to a server, the default port is 6667 for insecure connections, and 6697 for ssl connections")}, + N_("SERVER [-insecure|-ssl|-ssl-noverify] [] [], connects to a server using ssl unless otherwise specified, the default port is 6697 for ssl connections and 6667 for insecure connections")}, #else {"SERVER", cmd_server, 0, 0, 1, N_("SERVER [] [], connects to a server, the default port is 6667")},