mirror of
https://github.com/anope/anope.git
synced 2026-07-03 22:03:14 +02:00
BUILD : 1.7.11 (912) BUGS : NOTES : Turned identical userkeys error into a warning and added hs_request to src/modules/makefile.inc.win32
git-svn-id: svn://svn.anope.org/anope/trunk@912 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@658 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
b1dc23a455
commit
6d2b700767
@@ -4,6 +4,8 @@ Provided by Anope Dev. <dev@anope.org> - 2005
|
||||
10/01 A Information on uplink server can be displayed via OperServ STATS. [ #00]
|
||||
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/04 F Added missing hs_request to win32 modules makefile. [ #00]
|
||||
10/03 F Changed error on identical userkeys into a warning. [ #00]
|
||||
10/02 F Added check in OperServ stats to avoid segfault without param. [ #00]
|
||||
10/02 F Numeric 219 didn't give correct letter for STATS u. [ #00]
|
||||
10/02 F ChanServ HOP was available on IRCDs without halfop support. [ #00]
|
||||
|
||||
+2
-5
@@ -1362,11 +1362,8 @@ int read_config(int reload)
|
||||
|
||||
/* Check the user keys */
|
||||
if ((UserKey1 == UserKey2) || (UserKey1 == UserKey3)
|
||||
|| (UserKey3 == UserKey2)) {
|
||||
printf
|
||||
("Every UserKey must be different. It's for YOUR safety! Remember that!\n");
|
||||
retval = 0;
|
||||
}
|
||||
|| (UserKey3 == UserKey2))
|
||||
alog("Every UserKey must be different. It's for YOUR safety! Remember that!");
|
||||
|
||||
/**
|
||||
* Check all DEFCON dependiencies...
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
SRCS=cs_appendtopic.c cs_enforce.c cs_tban.c ns_maxemail.c ns_noop.c os_info.c
|
||||
SRCS=cs_appendtopic.c cs_enforce.c cs_tban.c ns_maxemail.c hs_request.c ns_noop.c os_info.c
|
||||
SUBS=test
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="11"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="911"
|
||||
VERSION_BUILD="912"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.11 (912)
|
||||
# BUGS :
|
||||
# NOTES : Turned identical userkeys error into a warning and added hs_request to src/modules/makefile.inc.win32
|
||||
#
|
||||
# BUILD : 1.7.11 (911)
|
||||
# BUGS :
|
||||
# NOTES : Added a check to os_stats to see if we actually have a param to avoid segs
|
||||
|
||||
Reference in New Issue
Block a user