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