[open-ils-commits] [GIT] Evergreen ILS branch rel_1_6 updated. ba04975182553ec5a9795df0938d2e5163478cb5

Evergreen Git git at git.evergreen-ils.org
Wed Oct 12 13:42:50 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 has been updated
       via  ba04975182553ec5a9795df0938d2e5163478cb5 (commit)
      from  f11c95bb3368c2c303b3fe473b830d209b761b74 (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 ba04975182553ec5a9795df0938d2e5163478cb5
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