r63676 - in /branches/lenny/libapache-authenhook-perl: AuthenHook.xs debian/changelog

ansgar at users.alioth.debian.org ansgar at users.alioth.debian.org
Wed Oct 13 14:31:18 UTC 2010


Author: ansgar
Date: Wed Oct 13 14:30:53 2010
New Revision: 63676

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63676
Log:
Remove passwords from log messages. (Closes: #599712)

Modified:
    branches/lenny/libapache-authenhook-perl/AuthenHook.xs
    branches/lenny/libapache-authenhook-perl/debian/changelog

Modified: branches/lenny/libapache-authenhook-perl/AuthenHook.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/lenny/libapache-authenhook-perl/AuthenHook.xs?rev=63676&op=diff
==============================================================================
--- branches/lenny/libapache-authenhook-perl/AuthenHook.xs (original)
+++ branches/lenny/libapache-authenhook-perl/AuthenHook.xs Wed Oct 13 14:30:53 2010
@@ -180,8 +180,8 @@
 
     case OK:
       ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
-                    "Apache::AuthenHook - user '%s', password '%s' verified",
-                    user, password);
+                    "Apache::AuthenHook - user '%s' verified",
+                    user);
 
       status = AUTH_GRANTED;
       break;
@@ -196,8 +196,8 @@
 
     default:
       ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
-                    "Apache::AuthenHook - user '%s', password '%s' denied",
-                    user, password);
+                    "Apache::AuthenHook - user '%s' denied",
+                    user);
 
       status = AUTH_DENIED;
   };

Modified: branches/lenny/libapache-authenhook-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/lenny/libapache-authenhook-perl/debian/changelog?rev=63676&op=diff
==============================================================================
--- branches/lenny/libapache-authenhook-perl/debian/changelog (original)
+++ branches/lenny/libapache-authenhook-perl/debian/changelog Wed Oct 13 14:30:53 2010
@@ -1,3 +1,9 @@
+libapache-authenhook-perl (2.00-04+pristine-1+lenny1) stable-security; urgency=high
+
+  * Remove passwords from log messages. (Closes: #599712)
+
+ -- Ansgar Burchardt <ansgar at debian.org>  Wed, 13 Oct 2010 15:36:05 +0200
+
 libapache-authenhook-perl (2.00-04+pristine-1) unstable; urgency=low
 
   [ gregor herrmann ]




More information about the Pkg-perl-cvs-commits mailing list