You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2007/12/03 12:21:03 UTC

svn commit: r600486 - in /httpd/httpd/trunk/modules/ssl: ssl_engine_log.c ssl_private.h

Author: jorton
Date: Mon Dec  3 03:21:02 2007
New Revision: 600486

URL: http://svn.apache.org/viewvc?rev=600486&view=rev
Log:
* modules/ssl/ssl_engine_log.c (ssl_log_cxerror): Drop 'peer' from the
  log message since the passed-in cert may be e.g. the peer's issuer.

* modules/ssl/ssl_private.h (ssl_log_cxerror): Don't mention the word
  peer here either.

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_log.c
    httpd/httpd/trunk/modules/ssl/ssl_private.h

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_log.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_log.c?rev=600486&r1=600485&r2=600486&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_log.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_log.c Mon Dec  3 03:21:02 2007
@@ -132,7 +132,7 @@
     va_end(ap);
 
     ap_log_cerror(file, line, level, rv, c, 
-                  "%s [peer subject: %s, issuer: %s, serial: %s]",
+                  "%s [subject: %s, issuer: %s, serial: %s]",
                   buf,
                   sname ? sname : "-unknown-",
                   iname ? iname : "-unknown-",

Modified: httpd/httpd/trunk/modules/ssl/ssl_private.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_private.h?rev=600486&r1=600485&r2=600486&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_private.h (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_private.h Mon Dec  3 03:21:02 2007
@@ -689,7 +689,7 @@
 void         ssl_die(void);
 void         ssl_log_ssl_error(const char *, int, int, server_rec *);
 
-/* ssl_log_cxerror is a wrapper for ap_log_cerror which takes the peer
+/* ssl_log_cxerror is a wrapper for ap_log_cerror which takes a
  * certificate as an additional argument and appends details of that
  * cert to the log message.  All other arguments interpreted exactly
  * as ap_log_cerror. */