diff options
-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 |