1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 11:03:13 +02:00

BUILD : 1.7.11 (905) BUGS : NOTES : Fixed up config; UserKeys can be safely missing again, you get a real warning when they are identical, and fixed a small grammar error in the GlobalOnCycle warning just above

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@651 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-10-01 15:29:54 +00:00
parent 9416d19204
commit 9602733b2f
3 changed files with 9 additions and 7 deletions
+1
View File
@@ -3,6 +3,7 @@ Anope Version S V N
Provided by Anope Dev. <dev@anope.org> - 2005
09/29 A Configuration option to change fantasy command prefix character. [ #00]
09/28 A Event for fantasy commands triggered without channel access. [ #00]
10/01 F UserKeys gave an error without message when missing. [ #00]
09/30 F Stripping fantasy character from fantasy commands. [ #00]
09/28 F Made module (un)loading code more friendly for modularized core. [ #00]
09/28 F NickServ SASET didn't fill the nick in the 'not registered' line. [ #00]
+3 -6
View File
@@ -1355,7 +1355,7 @@ int read_config(int reload)
if (GlobalOnCycle) {
if (!GlobalOnCycleMessage && !GlobalOnCycleUP) {
alog("GlobalOnCycleMessage and GlobalOnCycleUP are not defined disabling GlobalOnCycle");
alog("GlobalOnCycleMessage and GlobalOnCycleUP are not defined; disabling GlobalOnCycle");
GlobalOnCycle = 0;
}
}
@@ -1363,11 +1363,8 @@ int read_config(int reload)
/* Check the user keys */
if ((UserKey1 == UserKey2) || (UserKey1 == UserKey3)
|| (UserKey3 == UserKey2)) {
alog("Every UserKey must be different. It's for YOUR safety! Remember that!");
retval = 0;
}
if (UserKey1 == 9866235) {
alog("You don't want your network secure? You are supposed to set NEW UserKey values!!!");
printf
("Every UserKey must be different. It's for YOUR safety! Remember that!\n");
retval = 0;
}
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="11"
VERSION_EXTRA="-svn"
VERSION_BUILD="904"
VERSION_BUILD="905"
# $Log$
#
# BUILD : 1.7.11 (905)
# BUGS :
# NOTES : Fixed up config; UserKeys can be safely missing again, you get a real warning when they are identical, and fixed a small grammar error in the GlobalOnCycle warning just above
#
# BUILD : 1.7.11 (904)
# BUGS :
# NOTES : Stripping fantasy char from fantasy commands now