diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-08-13 10:43:37 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-08-13 10:43:37 +0000 |
commit | 15556aadb69b7e9bc44893ee3b1daaa539459fbc (patch) | |
tree | 684a75b085e49f37a8a19618370e1f4d84a28b8d | |
parent | d45fabdda8ec4edd7a9e9c9efd4b3de29b671075 (diff) |
BUILD : 1.7.19 (1263) BUGS : NOTES : Made an oops in the fix for bug 742 :) (wrong params passed to a function)
git-svn-id: svn://svn.anope.org/anope/trunk@1264 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@982 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/inspircd11.c | 2 | ||||
-rw-r--r-- | version.log | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index bfa340bdb..21ac9dbe7 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -1525,7 +1525,7 @@ int anope_event_capab(char *source, int ac, char **av) argv[3] = "VL"; argv[4] = "TLKEXT"; - capab_parse(ac, av); + capab_parse(argc, argv); } return MOD_CONT; } diff --git a/version.log b/version.log index 6c2956560..1a6259d84 100644 --- a/version.log +++ b/version.log @@ -14,6 +14,10 @@ VERSION_BUILD="1263" # $Log$ # # BUILD : 1.7.19 (1263) +# BUGS : +# NOTES : Made an oops in the fix for bug 742 :) (wrong params passed to a function) +# +# BUILD : 1.7.19 (1263) # BUGS : 742 # NOTES : Fixed inspircd11.c so it generates a fake capab parse call to enable things like NOQUIT... also ran indent on inspircd11.c # |