summaryrefslogtreecommitdiff
path: root/src/core/cs_access.c
diff options
context:
space:
mode:
authorcertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-03-01 10:20:50 +0000
committercertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-03-01 10:20:50 +0000
commit79fbeb90c1ef6dbceb94100580ca6de36fbd8ffe (patch)
treeefb5f4a4830a2e4cea1251c7a36fdb4bf57a68bb /src/core/cs_access.c
parentaff742a18e9e30c22d93c229836aa37a18bc4c21 (diff)
BUILD : 1.7.13 (977) BUGS : 461 463 NOTES : happy bug-fixing-day to all of you.
git-svn-id: svn://svn.anope.org/anope/trunk@977 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@702 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_access.c')
-rw-r--r--src/core/cs_access.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/cs_access.c b/src/core/cs_access.c
index cf09573c5..f3858b44f 100644
--- a/src/core/cs_access.c
+++ b/src/core/cs_access.c
@@ -136,9 +136,6 @@ static int access_list_callback(User * u, int num, va_list args)
* The /cs access command.
* @param u The user who issued the command
* @param MOD_CONT to continue processing other modules, MOD_STOP to stop processing.
- *
- * Known bug: EVENT_ACCESS_DEL won't be triggered if you use numbers instead of nicks.
- * -Certus
**/
int do_access(User * u)
{
@@ -346,8 +343,12 @@ int do_access(User * u)
}
}
}
+ /* We don't know the nick if someone used numbers, so we trigger the event without
+ * nick param. We just do this once, even if someone enters a range. -Certus */
if (na)
send_event(EVENT_ACCESS_DEL, 3, ci->name, u->nick, na->nick);
+ else
+ send_event(EVENT_ACCESS_DEL, 2, ci->name, u->nick);
}
} else if (stricmp(cmd, "LIST") == 0) {
int sent_header = 0;