diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-10-04 14:53:37 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-10-04 14:53:37 +0000 |
commit | 6d2b7007676f0e928af32fc27ffac121c29a7c20 (patch) | |
tree | f5f6e52e453ad07448a8418a04ff3311041af9b1 | |
parent | b1dc23a455281b60507be380c2ea124f012d56d5 (diff) |
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
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | src/config.c | 7 | ||||
-rw-r--r-- | src/modules/makefile.inc.win32 | 2 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 10 insertions, 7 deletions
@@ -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] diff --git a/src/config.c b/src/config.c index d24af1ca3..d9566f073 100644 --- a/src/config.c +++ b/src/config.c @@ -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... diff --git a/src/modules/makefile.inc.win32 b/src/modules/makefile.inc.win32 index 9b933f4a5..e629495f7 100644 --- a/src/modules/makefile.inc.win32 +++ b/src/modules/makefile.inc.win32 @@ -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 diff --git a/version.log b/version.log index 0c7365aaa..dcf1b6724 100644 --- a/version.log +++ b/version.log @@ -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 |