diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-06-16 21:48:19 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-06-16 21:48:19 +0000 |
commit | 5d0cebfa23303a7904420bb187ed49ec708b51c0 (patch) | |
tree | 7ee4538e5d6b55f45ca05cb8d26785a586bfcd9b | |
parent | fe01470ff6da8f3a97a185719834d682ed9a04c8 (diff) |
# BUILD : 1.7.14 (1054) # BUGS : 524 # NOTES : fixed typo in a function name.
git-svn-id: svn://svn.anope.org/anope/trunk@1057 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@781 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
@@ -27,6 +27,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006 06/15 F OpenBSD Config issue. [#519] 06/15 F langcomp with _GNU_SOURCES defined. [ #00] 06/16 F Fixed several memleaks in ns_noop.c. [ #00] +06/16 F Fixed typo in function name. [#524] Provided by ThaPrince <jon@vile.com> - 2006 05/19 A Plexus 3 support. [ #00] diff --git a/src/modules.c b/src/modules.c index 1ba71f719..8296301fe 100644 --- a/src/modules.c +++ b/src/modules.c @@ -59,7 +59,7 @@ ModuleQueue *mod_operation_queue = NULL; int displayCommand(Command * c); int displayCommandFromHash(CommandHash * cmdTable[], char *name); -int displayMessageFromHashl(char *name); +int displayMessageFromHash(char *name); int displayMessage(Message * m); char *ModuleGetErrStr(int status); diff --git a/version.log b/version.log index 187a6398c..f545b0014 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="14" VERSION_EXTRA="" -VERSION_BUILD="1053" +VERSION_BUILD="1054" # $Log$ # +# BUILD : 1.7.14 (1054) +# BUGS : 524 +# NOTES : fixed typo in a function name. +# # BUILD : 1.7.14 (1053) # BUGS : # NOTES : just a booboo. |