1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 23:46:38 +02:00

BUILD : 1.7.6 (441) BUGS : 215, 216 NOTES : Fixed some last minute bugs, and fixed make strict under Redhat

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@296 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-11-12 19:53:10 +00:00
parent f0c53b4727
commit ee7afa7eca
4 changed files with 11 additions and 5 deletions
+1 -2
View File
@@ -213,9 +213,8 @@ int vsnprintf(char *str, size_t size, const char *format, va_list ap);
/* Freebsd 5.2.1 actually has u_char those it throws more
errors having it defined again - TSL */
#ifndef HAS_SYS_TYPES_H
#undef u_char
typedef unsigned char u_char;
#endif
#endif
+4 -1
View File
@@ -2045,12 +2045,15 @@ static int do_register(User * u)
}
if (!pass) {
if (NSForceEmail && !email) {
if (NSForceEmail) {
syntax_error(s_NickServ, u, "REGISTER",
NICK_REGISTER_SYNTAX_EMAIL);
} else {
syntax_error(s_NickServ, u, "REGISTER", NICK_REGISTER_SYNTAX);
}
} else if (NSForceEmail && !email) {
syntax_error(s_NickServ, u, "REGISTER",
NICK_REGISTER_SYNTAX_EMAIL);
} else if (time(NULL) < u->lastnickreg + NSRegDelay) {
notice_lang(s_NickServ, u, NICK_REG_PLEASE_WAIT, NSRegDelay);
} else if (u->na) { /* i.e. there's already such a nick regged */
+1 -1
View File
@@ -212,7 +212,7 @@ char csmodes[128] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a', 'a', 0
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a', 0
};
CMMode cmmodes[128] = {
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="6"
VERSION_BUILD="440"
VERSION_BUILD="441"
# $Log$
#
# BUILD : 1.7.6 (441)
# BUGS : 215, 216
# NOTES : Fixed some last minute bugs, and fixed make strict under Redhat
#
# BUILD : 1.7.6 (440)
# BUGS : 211
# NOTES : 1. Updated PTLink support, 2. OperServ takes +q/+a on CLEARMODES, 3. fixed a segfault in do_match_wild()