diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-08-08 18:25:14 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-08-08 18:25:14 +0000 |
commit | d20ad8e18001a93ca4afcd57ade4013821b3ec62 (patch) | |
tree | 44243163bd317cf6dddac629bd81ac6eed5050cf | |
parent | ba5c044340bb7d6ee8d7e15a5674a63d34a477f2 (diff) |
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
git-svn-id: svn://svn.anope.org/anope/trunk@1261 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@979 5417fbe8-f217-4b02-8779-1006273d7864
-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 # |