diff options
author | Sadie Powell <sadie@witchery.services> | 2022-10-16 11:18:44 +0100 |
---|---|---|
committer | Patrick <tingping@tingping.se> | 2022-10-16 15:35:43 -0500 |
commit | 8cf2aa55863cd34849426e95e2e3e9bccb18eba1 (patch) | |
tree | 84a234b03182f5b9994eae850a20ea6069c6ba78 | |
parent | 8fb0d2311fc249b6b4f6beae7ccd135f913f0e47 (diff) |
Make it more clear that /SERVER and /SERVCHAN use SSL by default.
-rw-r--r-- | src/common/outbound.c | 4 |
1 files 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 <nick> [<file>]")}, #ifdef USE_OPENSSL {"SERVCHAN", cmd_servchan, 0, 0, 1, - N_("SERVCHAN [-insecure|-ssl|-ssl-noverify] <host> <port> <channel>, connects and joins a channel")}, + N_("SERVCHAN [-insecure|-ssl|-ssl-noverify] <host> <port> <channel>, connects and joins a channel using ssl unless otherwise specified")}, #else {"SERVCHAN", cmd_servchan, 0, 0, 1, N_("SERVCHAN <host> <port> <channel>, connects and joins a channel")}, #endif #ifdef USE_OPENSSL {"SERVER", cmd_server, 0, 0, 1, - N_("SERVER [-insecure|-ssl|-ssl-noverify] <host> [<port>] [<password>], connects to a server, the default port is 6667 for insecure connections, and 6697 for ssl connections")}, + N_("SERVER [-insecure|-ssl|-ssl-noverify] <host> [<port>] [<password>], 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 <host> [<port>] [<password>], connects to a server, the default port is 6667")}, |