diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-07-07 19:13:41 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-07-07 19:13:41 +0000 |
commit | 65665505f40a4046b79613194f08d81f7b58f6a3 (patch) | |
tree | b93baeefb9eae76d784c9c4bc9f738c15f4c1a16 | |
parent | 1e1cdee5d4874cffca2ea50e78833f83c7a9a963 (diff) |
BUILD : 1.7.10 (847) BUGS : NOTES : Fixed a typo when loading two protocol modules
git-svn-id: svn://svn.anope.org/anope/trunk@847 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@600 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/modules.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -5,6 +5,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005 07/01 A Events for channel access/xop updates. [ #00] 06/26 A New module pack module: hs_request. [ #00] 06/03 A Protocol files can now fill mod_current_buffer with custom code. [#389] +07/07 F Typing mistake in module error message. [ #00] 07/07 F Clarified comments for SendmailPath regarding -t option. [ #00] 07/02 F Module languages now default to NSDefLanguage, not English. [ #00] 07/02 F Various compile warnings when using AMD64. [ #00] diff --git a/src/modules.c b/src/modules.c index 374eaae20..ea99ec241 100644 --- a/src/modules.c +++ b/src/modules.c @@ -556,7 +556,7 @@ int loadModule(Module * m, User * u) free(argv[0]); } if (m->type == PROTOCOL && protocolModuleLoaded()) { - alog("You cannot load have 2 protocol modules."); + alog("You cannot load two protocol modules"); ret = MOD_STOP; } if (ret == MOD_STOP) { diff --git a/version.log b/version.log index fc42972e4..352340f56 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="10" -VERSION_BUILD="846" +VERSION_BUILD="847" # $Log$ # +# BUILD : 1.7.10 (847) +# BUGS : +# NOTES : Fixed a typo when loading two protocol modules +# # BUILD : 1.7.10 (846) # BUGS : # NOTES : Clarified comments above SendMailPath in the config, thanks IcyLiquid |