Hi,

they are 3 similar constructions in server/log.c

CJ


Le 31/03/2013 22:13, s...@apache.org a écrit :
Author: sf
Date: Sun Mar 31 20:13:48 2013
New Revision: 1463045

URL: http://svn.apache.org/r1463045
Log:
ap_log_error already logs the error string, no need to log it twice

Modified:
     httpd/httpd/trunk/modules/aaa/mod_auth_digest.c

Modified: httpd/httpd/trunk/modules/aaa/mod_auth_digest.c
URL: 
http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_auth_digest.c?rev=1463045&r1=1463044&r2=1463045&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_auth_digest.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_auth_digest.c Sun Mar 31 20:13:48 2013
@@ -240,10 +240,8 @@ static apr_status_t initialize_secret(se
  #endif
if (status != APR_SUCCESS) {
-        char buf[120];
          ap_log_error(APLOG_MARK, APLOG_CRIT, status, s, APLOGNO(01758)
-                     "error generating secret: %s",
-                     apr_strerror(status, buf, sizeof(buf)));
+                     "error generating secret");
          return status;
      }



Reply via email to