diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-06-25 08:53:03 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-06-25 08:53:03 +0200 |
commit | 8788fcedc834c0fb53ed5565dca86f4e7618f43f (patch) | |
tree | 90cb8589af747bec07a713a8bb71e9dc6dd2e743 | |
parent | 84e6e843478e4ca1b12b3390a8b305b64c99737d (diff) | |
download | weechat-8788fcedc834c0fb53ed5565dca86f4e7618f43f.zip |
irc: update URLs to IRCv3 specifications
-rw-r--r-- | src/plugins/irc/irc-command.c | 3 | ||||
-rw-r--r-- | src/plugins/irc/irc-message.c | 2 | ||||
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 3 |
3 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index bf57bedf6..368c32f48 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -1489,8 +1489,7 @@ IRC_COMMAND_CALLBACK(ban) * * Docs on capability negotiation: * https://tools.ietf.org/html/draft-mitchell-irc-capabilities-01 - * https://ircv3.net/specs/core/capability-negotiation-3.1.html - * https://ircv3.net/specs/core/capability-negotiation-3.2.html + * https://ircv3.net/specs/extensions/capability-negotiation */ IRC_COMMAND_CALLBACK(cap) diff --git a/src/plugins/irc/irc-message.c b/src/plugins/irc/irc-message.c index 9bed15c38..febf7b9da 100644 --- a/src/plugins/irc/irc-message.c +++ b/src/plugins/irc/irc-message.c @@ -231,7 +231,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.net/specs/core/message-tags-3.2.html + * See: https://ircv3.net/specs/extensions/message-tags */ pos = strchr (ptr_message, ' '); if (pos) diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index 3d23738b5..9629e8e48 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -1212,8 +1212,7 @@ IRC_PROTOCOL_CALLBACK(cap) /* * Callback for the IRC command "CHGHOST": user/host change of a nick (with - * capability "chghost"): - * https://ircv3.net/specs/extensions/chghost-3.2.html + * capability "chghost"): https://ircv3.net/specs/extensions/chghost * * Command looks like: * CHGHOST user new.host.goes.here |