diff options
author | Stefan Fritsch <sf@apache.org> | 2011-12-07 23:33:35 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-12-07 23:33:35 +0100 |
commit | 53164d250f83bcc0eee81ad947f5fc002724e610 (patch) | |
tree | b50f8fc1b985e266be215f67398659feff0db5a9 /modules/ssl/ssl_util.c | |
parent | Remove usage of APLOG_NOERRNO. It has been a no-op since at least 2.0.x (diff) | |
download | apache2-53164d250f83bcc0eee81ad947f5fc002724e610.tar.xz apache2-53164d250f83bcc0eee81ad947f5fc002724e610.zip |
Various fixes for log message tags:
- Remove tags in ssl_log_ssl_error() and ssl_log_cert_error()
- Instead add tags to various ssl_log_xerror, ssl_log_cxerror
calls (ssl_log_rxerror is unused).
- likewise for modssl_proxy_info_log()
- Fix spelling of APLOG_NOERRNO in coccinelle script
- add support for ssl_log_*error and ap_log_cserror
- add some more tags missing due to APLOG_NOERRNO spelling error
- Remove tags from example modules (we don't want people to blindly copy
those)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1211680 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/ssl/ssl_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ssl/ssl_util.c b/modules/ssl/ssl_util.c index 969dab2873..6b5a7de64e 100644 --- a/modules/ssl/ssl_util.c +++ b/modules/ssl/ssl_util.c @@ -292,7 +292,7 @@ STACK_OF(X509) *ssl_read_pkcs7(server_rec *s, const char *pkcs7) p7 = PEM_read_PKCS7(f, NULL, NULL, NULL); if (!p7) { - ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, + ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, APLOGNO(02274) "Can't read PKCS7 object %s", pkcs7); ssl_log_ssl_error(SSLLOG_MARK, APLOG_CRIT, s); exit(1); |