1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 15:56:39 +02:00

BUILD : 1.7.15 (1152) BUGS : 599 NOTES : Corrected valid nick characters for /OS SVSNICK by making the bs_bot isvalidnick() macro global via services.h

git-svn-id: svn://svn.anope.org/anope/trunk@1152 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@875 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-09-10 19:46:53 +00:00
parent 60b3c3568a
commit 8b87cc15ab
5 changed files with 19 additions and 14 deletions
+1
View File
@@ -10,6 +10,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
09/10 F Added HOP to the /CS ACCESS error when XOP is enabled. [#598]
09/10 F MySQL no longer connects again on each query. [#595]
09/10 F Nick Enforcers can now be whois'd on services. [#601]
09/10 F Corrected valid nick characters for /OS SVSNICK. [#599]
Provided by Trystan <trystan@nomadirc.net> - 2006
08/20 F Fixed several compiler warnings. [#586]
+11
View File
@@ -1327,6 +1327,17 @@ struct capabinfo_ {
/*************************************************************************/
/**
* RFC: defination of a valid nick
* nickname = ( letter / special ) *8( letter / digit / special / "-" )
* letter = %x41-5A / %x61-7A ; A-Z / a-z
* digit = %x30-39 ; 0-9
* special = %x5B-60 / %x7B-7D ; "[", "]", "\", "`", "_", "^", "{", "|", "}"
**/
#define isvalidnick(c) ( isalnum(c) || ((c) >='\x5B' && (c) <='\x60') || ((c) >='\x7B' && (c) <='\x7D') || (c)=='-' )
/*************************************************************************/
#include "extern.h"
/*************************************************************************/
-10
View File
@@ -15,16 +15,6 @@
#include "module.h"
/**
* RFC: defination of a valid nick
* nickname = ( letter / special ) *8( letter / digit / special / "-" )
* letter = %x41-5A / %x61-7A ; A-Z / a-z
* digit = %x30-39 ; 0-9
* special = %x5B-60 / %x7B-7D ; "[", "]", "\", "`", "_", "^", "{", "|", "}"
**/
#define isvalidnick(c) ( isalnum(c) || ((c) >='\x5B' && (c) <='\x60') || ((c) >='\x7B' && (c) <='\x7D') || (c)=='-' )
int do_bot(User * u);
int delbot(BotInfo * bi);
void myBotServHelp(User * u);
+2 -3
View File
@@ -101,10 +101,9 @@ int do_svsnick(User * u)
notice_lang(s_OperServ, u, NICK_X_ILLEGAL, newnick);
return MOD_CONT;
}
#define isvalid(c) (((c) >= 'A' && (c) <= '~') || isdigit(c) || (c) == '-')
for (c = newnick; *c && (c - newnick) < NICKMAX; c++) {
if (!isvalid(*c) || isspace(*c)) {
notice_lang(s_OperServ, u, NICK_X_ILLEGAL, nick);
if (!isvalidnick(*c)) {
notice_lang(s_OperServ, u, NICK_X_ILLEGAL, newnick);
return MOD_CONT;
}
}
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="15"
VERSION_EXTRA="-svn"
VERSION_BUILD="1151"
VERSION_BUILD="1152"
# $Log$
#
# BUILD : 1.7.15 (1152)
# BUGS : 599
# NOTES : Corrected valid nick characters for /OS SVSNICK by making the bs_bot isvalidnick() macro global via services.h
#
# BUILD : 1.7.15 (1151)
# BUGS : 601
# NOTES : Fixed us with reposding we didn't know someone when we were WHOIS'd for a nick enforcer client; now we reply correctly