diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/protocol/inspircd11.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -44,6 +44,7 @@ Anope Version S V N 09/09 F Missing test to check mysql_config sanity in ./configure. [#757] 09/24 F Polish language reported itself as English when switching to it. [#789] 09/24 F OperServ HELP OPER showing incorrect access levels. [#788] +10/05 F Typo in inspircd11.c checking for m_chgident.so loaded. [#793] Provided by Trystan <trystan@nomadirc.net> - 2007 08/29 F Module runtime directory not always properly cleaned up. [#768] diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 739866608..7c26e107d 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -1549,7 +1549,7 @@ int anope_event_capab(char *source, int ac, char **av) if (strstr(av[1], "m_chghost.so")) { has_chghostmod = 1; } - if (strstr(av[1], "m_chghident.so")) { + if (strstr(av[1], "m_chgident.so")) { has_chgidentmod = 1; } } else if (strcasecmp(av[0], "END") == 0) { diff --git a/version.log b/version.log index 200714c2d..32c84cb5e 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="19" VERSION_EXTRA="-svn" -VERSION_BUILD="1308" +VERSION_BUILD="1309" # $Log$ # +# BUILD : 1.7.19 (1309) +# BUGS : 793 +# NOTES : Fixed a typo in inspircd11.c where it checked for chgident.so +# # BUILD : 1.7.19 (1308) # BUGS : 787 # NOTES : Applied a patch by T fixing moduleGetConfigDirective disliking CRLF line-ends |