diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/core/cs_getpass.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -6,6 +6,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005 01/14 F SGLines will now be removed correctly. [ #00] 01/26 F Export buildStringList() for modules. [#425] 02/11 F Fixed a few memleaks. [#420] +02/17 F cs_getpass will now unload if encryption is enaled. [ #00] Provided by nenolod. <nenolod@nenolod.net> - 2005 02/03 A Support for Charybdis IRCd. [ #00] diff --git a/src/core/cs_getpass.c b/src/core/cs_getpass.c index 403b21403..ef9ea3cbb 100644 --- a/src/core/cs_getpass.c +++ b/src/core/cs_getpass.c @@ -39,7 +39,7 @@ int AnopeInit(int argc, char **argv) moduleSetChanHelp(myChanServHelp); #ifdef USE_ENCRYPTION - + return MOD_STOP; #else return MOD_CONT; #endif diff --git a/version.log b/version.log index cfc5e235b..a92f12ef0 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="13" VERSION_EXTRA="-svn" -VERSION_BUILD="965" +VERSION_BUILD="968" # $Log$ # +# BUILD : 1.7.13 (968) +# BUGS : +# NOTES : Fixed cs_getpass.c, thx to Trystan. +# # BUILD : 1.7.13 (965) # BUGS : 442 437 432 431 420 # NOTES : Fixed a few memleaks. |