diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-05-21 15:48:59 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-05-21 15:48:59 +0200 |
commit | 530f73ec71b0245abcf8ab2be4b2a78e02193651 (patch) | |
tree | 46f1708fb2ed69082804fed80f8b805ac4a86886 /src/plugins/irc | |
parent | aee5ee6f42b24eef530989c0b89974366c773191 (diff) | |
download | weechat-530f73ec71b0245abcf8ab2be4b2a78e02193651.zip |
irc: update ircv3 URLs in comments
Diffstat (limited to 'src/plugins/irc')
-rw-r--r-- | src/plugins/irc/irc-command.c | 4 | ||||
-rw-r--r-- | src/plugins/irc/irc-message.c | 2 | ||||
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index 9324fa701..93f335d64 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -1217,8 +1217,8 @@ IRC_COMMAND_CALLBACK(ban) * * Docs on capability negotiation: * https://tools.ietf.org/html/draft-mitchell-irc-capabilities-01 - * http://ircv3.net/specs/core/capability-negotiation-3.1.html - * http://ircv3.net/specs/core/capability-negotiation-3.2.html + * https://ircv3.net/specs/core/capability-negotiation-3.1.html + * https://ircv3.net/specs/core/capability-negotiation-3.2.html */ IRC_COMMAND_CALLBACK(cap) diff --git a/src/plugins/irc/irc-message.c b/src/plugins/irc/irc-message.c index 2df6ab2e8..d9208b666 100644 --- a/src/plugins/irc/irc-message.c +++ b/src/plugins/irc/irc-message.c @@ -115,7 +115,7 @@ irc_message_parse (struct t_irc_server *server, const char *message, /* * Read tags: they are optional and enabled only if client enabled * a server capability. - * See: https://ircv3.github.io/specs/core/message-tags-3.2.html + * See: https://ircv3.net/specs/core/message-tags-3.2.html */ pos = strchr (ptr_message, ' '); if (pos) diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index 41ded56c3..143507a7c 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -762,7 +762,7 @@ IRC_PROTOCOL_CALLBACK(cap) /* * Callback for the IRC message "CHGHOST": user/host change of a nick (with * capability "chghost"): - * http://ircv3.net/specs/extensions/chghost-3.2.html + * https://ircv3.net/specs/extensions/chghost-3.2.html * * Message looks like: * :nick!user@host CHGHOST user new.host.goes.here @@ -941,7 +941,7 @@ IRC_PROTOCOL_CALLBACK(generic_error) * :nick!user@host INVITE mynick :#channel * * With invite-notify capability - * (http://ircv3.net/specs/extensions/invite-notify-3.2.html): + * (https://ircv3.net/specs/extensions/invite-notify-3.2.html): * :<inviter> INVITE <target> <channel> * :ChanServ!ChanServ@example.com INVITE Attila #channel */ |