diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-10-05 15:21:32 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-10-05 15:21:32 +0200 |
commit | 33d90d75c3ca97776537c3a9888480b2fa774374 (patch) | |
tree | c5d2bf335d8687bebb2c4d5d0e5291fac239c3c4 /src/plugins/relay | |
parent | 485728a43fd7eff34893abc287495242379ab078 (diff) | |
download | weechat-33d90d75c3ca97776537c3a9888480b2fa774374.zip |
relay: add missing "ssl." in output of /relay listrelay
Diffstat (limited to 'src/plugins/relay')
-rw-r--r-- | src/plugins/relay/relay-command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/relay/relay-command.c b/src/plugins/relay/relay-command.c index 3d6a381c1..8a4bb4d7b 100644 --- a/src/plugins/relay/relay-command.c +++ b/src/plugins/relay/relay-command.c @@ -149,11 +149,12 @@ relay_command_server_list () } weechat_printf (NULL, - _(" port %s%d%s, relay: %s%s%s%s%s, started on: %s"), + _(" port %s%d%s, relay: %s%s%s%s%s%s, started on: %s"), RELAY_COLOR_CHAT_BUFFER, ptr_server->port, RELAY_COLOR_CHAT, RELAY_COLOR_CHAT_BUFFER, + (ptr_server->ssl) ? "ssl." : "", relay_protocol_string[ptr_server->protocol], (ptr_server->protocol_args) ? "." : "", (ptr_server->protocol_args) ? ptr_server->protocol_args : "", |