diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-12-13 09:16:09 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-12-13 09:16:09 +0100 |
commit | 0cd2aff765d378259ea6f60fcade0afb1b473699 (patch) | |
tree | 784006023b42704aac6d24b94bcc6e4532f4fa18 /src/plugins/irc | |
parent | 7818e0896424e00f89a9a72eb7fd548f12a8fd49 (diff) | |
download | weechat-0cd2aff765d378259ea6f60fcade0afb1b473699.zip |
core: use https for WeeChat URLs
Diffstat (limited to 'src/plugins/irc')
-rw-r--r-- | src/plugins/irc/irc-ctcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-ctcp.c b/src/plugins/irc/irc-ctcp.c index 42c61e7af..c87e34646 100644 --- a/src/plugins/irc/irc-ctcp.c +++ b/src/plugins/irc/irc-ctcp.c @@ -421,7 +421,7 @@ irc_ctcp_replace_variables (struct t_irc_server *server, const char *format) /* * $site: WeeChat web site, example: - * http://weechat.org/ + * https://weechat.org/ */ info = weechat_info_get ("weechat_site", ""); temp = weechat_string_replace (res, "$site", info); @@ -432,7 +432,7 @@ irc_ctcp_replace_variables (struct t_irc_server *server, const char *format) /* * $download: WeeChat download page, example: - * http://weechat.org/download + * https://weechat.org/download */ info = weechat_info_get ("weechat_site_download", ""); temp = weechat_string_replace (res, "$download", info); |