[open-ils-commits] [GIT] Evergreen ILS branch rel_1_6_2 updated. 6e37fd7f37b751c66a2152fc55df96037e97b56b
Evergreen Git
git at git.evergreen-ils.org
Wed Oct 12 13:45:30 EDT 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_1_6_2 has been updated
via 6e37fd7f37b751c66a2152fc55df96037e97b56b (commit)
from 44687e2781dba4747fabe9d7f178492fc265d351 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6e37fd7f37b751c66a2152fc55df96037e97b56b
Author: Bill Erickson <berick at esilibrary.com>
Date: Tue Oct 11 17:03:57 2011 -0400
Authentication block logging
* Login too-many-auth-failures message at Info level instead of Internal
* Log the username getting blocked
Signed-off-by: Bill Erickson <berick at esilibrary.com>
Signed-off-by: Galen Charlton <gmc at esilibrary.com>
diff --git a/Open-ILS/src/c-apps/oils_auth.c b/Open-ILS/src/c-apps/oils_auth.c
index bd7d452..52ff7c5 100644
--- a/Open-ILS/src/c-apps/oils_auth.c
+++ b/Open-ILS/src/c-apps/oils_auth.c
@@ -253,7 +253,7 @@ static int oilsAuthVerifyPassword( const osrfMethodContext* ctx,
long failcount = (long) jsonObjectGetNumber( countobject );
if(failcount >= _oilsAuthBlockCount) {
ret = 0;
- osrfLogInternal(OSRF_LOG_MARK, "oilsAuth found too many recent failures: %d, forcing failure state.", failcount);
+ osrfLogInfo(OSRF_LOG_MARK, "oilsAuth found too many recent failures for '%s' : %i, forcing failure state.", uname, failcount);
}
if(ret == 0) {
failcount += 1;
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/c-apps/oils_auth.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list