From 6eb0267a90aaad8f9428067334064583f2acdba2 Mon Sep 17 00:00:00 2001 From: Juuso Lapinlampi Date: Wed, 30 Dec 2015 10:17:58 +0000 Subject: [PATCH] messages.h: Remove 900-902 IRCv3.1 SASL trailing period The IRCv3.1 SASL specification [1] has been updated today, and brings a level of consistency with the trailing periods (or the lack of). This implements the change made in ircv3/ircv3-specifications@6d2ca77ffd0a001aa5a45bc13a4fc44d04699cf1. [1]: http://ircv3.net/specs/extensions/sasl-3.1.html --- include/messages.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/messages.h b/include/messages.h index fa40d7f3..4f4455fa 100644 --- a/include/messages.h +++ b/include/messages.h @@ -240,9 +240,9 @@ #define NUMERIC_STR_743 "%s %c %s :Invalid ban mask" #define NUMERIC_STR_750 "%d :matches" #define NUMERIC_STR_751 "%s %s %s %s %s %s :%s" -#define NUMERIC_STR_900 ":%s 900 %s %s!%s@%s %s :You are now logged in as %s." -#define NUMERIC_STR_901 ":%s 901 %s %s!%s@%s :You are now logged out." -#define NUMERIC_STR_902 ":%s 902 %s :You must use a nick assigned to you." +#define NUMERIC_STR_900 ":%s 900 %s %s!%s@%s %s :You are now logged in as %s" +#define NUMERIC_STR_901 ":%s 901 %s %s!%s@%s :You are now logged out" +#define NUMERIC_STR_902 ":%s 902 %s :You must use a nick assigned to you" #define NUMERIC_STR_903 ":%s 903 %s :SASL authentication successful" #define NUMERIC_STR_904 ":%s 904 %s :SASL authentication failed" #define NUMERIC_STR_905 ":%s 905 %s :SASL message too long"