diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/actions.c | 2 | ||||
-rw-r--r-- | version.log | 4 |
3 files changed, 6 insertions, 1 deletions
@@ -10,6 +10,7 @@ Anope Version S V N 07/09 F Various compile errors with `make strict`. [#743] 07/14 F No longer displaying commands on add/remove in debug mode 1. [ #00] 08/05 F ChanServ access level AUTODEOP works again. [#750] +08/08 F Wrong debug notice when killing people due to the session limit. [#734] Anope Version 1.7.19 -------------------- diff --git a/src/actions.c b/src/actions.c index 50ff90981..cbed962ae 100644 --- a/src/actions.c +++ b/src/actions.c @@ -67,7 +67,7 @@ void kill_user(char *source, char *user, char *reason) anope_cmd_svskill(source, user, buf); - if (!ircd->quitonkill) { + if (!ircd->quitonkill && finduser(user)) { do_kill(user, buf); } } diff --git a/version.log b/version.log index 445e22e45..ea1afc067 100644 --- a/version.log +++ b/version.log @@ -14,6 +14,10 @@ VERSION_BUILD="1260" # $Log$ # # BUILD : 1.7.19 (1260) +# BUGS : 734 +# NOTES : Fixed a false debug notice claiming the killed user did not exist when it was killed due to a session limit exceeded +# +# BUILD : 1.7.19 (1260) # BUGS : # NOTES : Updated FAQ to reflect the changes on wiki/site # |