summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2007-10-05 16:15:58 +0000
committergeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2007-10-05 16:15:58 +0000
commitf055aa452af893761ec94d958ffd75d08287eb9f (patch)
tree1919fb3f699fe6e06d9b984e282f7a3320686378
parentf598d67c16d5ec0bb668de93b3e2e50c667df201 (diff)
BUILD : 1.7.19 (1309) BUGS : 793 NOTES : Fixed a typo in inspircd11.c where it checked for chgident.so
git-svn-id: svn://svn.anope.org/anope/trunk@1309 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1027 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes1
-rw-r--r--src/protocol/inspircd11.c2
-rw-r--r--version.log6
3 files changed, 7 insertions, 2 deletions
diff --git a/Changes b/Changes
index 1a6326557..6e68af3a9 100644
--- a/Changes
+++ b/Changes
@@ -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