From 2ca37a9128b27640d54c3f3c48c990a69c5ce058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 16 Oct 2021 20:15:52 +0200 Subject: [PATCH] irc: remove server in "903" and "904" command callbacks examples --- src/plugins/irc/irc-protocol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index 9ffa4362a..8b8b2ab85 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -6894,7 +6894,7 @@ IRC_PROTOCOL_CALLBACK(901) * Callback for the IRC commands "903" and "907" (SASL OK). * * Commands look like: - * :server 903 nick :SASL authentication successful + * 903 nick :SASL authentication successful */ IRC_PROTOCOL_CALLBACK(sasl_end_ok) @@ -6922,7 +6922,7 @@ IRC_PROTOCOL_CALLBACK(sasl_end_ok) * Callback for the IRC commands "902", "904", "905", "906" (SASL failed). * * Commands look like: - * :server 904 nick :SASL authentication failed + * 904 nick :SASL authentication failed */ IRC_PROTOCOL_CALLBACK(sasl_end_fail)