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 /src | |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol/inspircd11.c | 2 |
1 files changed, 1 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; } |