[open-ils-commits] [GIT] Evergreen ILS branch master updated. bb952f0ade4daec445a5acd10f266285c15af2f3

Evergreen Git git at git.evergreen-ils.org
Wed Oct 12 13:36:13 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, master has been updated
       via  bb952f0ade4daec445a5acd10f266285c15af2f3 (commit)
      from  654b080c06b6060bacf9c8de755c78712e71d619 (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 bb952f0ade4daec445a5acd10f266285c15af2f3
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 8e1c028..7c545de 100644
--- a/Open-ILS/src/c-apps/oils_auth.c
+++ b/Open-ILS/src/c-apps/oils_auth.c
@@ -314,7 +314,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: %i, 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