]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/ssl: Add some missing logno tags.
authorJoe Orton <jorton@apache.org>
Thu, 3 May 2018 12:25:32 +0000 (12:25 +0000)
committerJoe Orton <jorton@apache.org>
Thu, 3 May 2018 12:25:32 +0000 (12:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1830816 13f79535-47bb-0310-9956-ffa450edef68

docs/log-message-tags/next-number
modules/ssl/ssl_engine_init.c
modules/ssl/ssl_engine_kernel.c

index cdf5ccdefffc5228ef4c34cbb864668eabe83a7b..6adec3be444c12f25c90ee6bf6698948eb0fd063 100644 (file)
@@ -1 +1 @@
-10127
+10130
index 21e2b2b9d343acb46a42b83c037bd6e0f54c2416..cbcadc711fa90f9f74f4a6be9fddf7450e4d70d1 100644 (file)
@@ -947,7 +947,7 @@ static apr_status_t ssl_init_ctx_cipher_suite(server_rec *s,
 #ifdef SSL_OP_NO_TLSv1_3
     if (mctx->auth.tls13_ciphers 
         && !SSL_CTX_set_ciphersuites(ctx, mctx->auth.tls13_ciphers)) {
-        ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO()
+        ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO(10127)
                 "Unable to configure permitted TLSv1.3 ciphers");
         ssl_log_ssl_error(SSLLOG_MARK, APLOG_EMERG, s);
         return ssl_die(s);
index ae16f91ada7b54137923a266c0770d177c7484db..e310c09aa3d028b9938db1354e3789e44db3794e 100644 (file)
@@ -1197,7 +1197,7 @@ static int ssl_hook_Access_modern(request_rec *r, SSLSrvConfigRec *sc, SSLDirCon
                                         : sc->server->auth.verify_depth;
                 if (sslconn->verify_depth < n) {
                     change_vmode = TRUE;
-                    ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO()
+                    ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(10128)
                                   "Reduced client verification depth will "
                                   "force renegotiation");
                 }
@@ -1216,7 +1216,7 @@ static int ssl_hook_Access_modern(request_rec *r, SSLSrvConfigRec *sc, SSLDirCon
                 return HTTP_FORBIDDEN;
             }
 
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO() "verify client post handshake");
+            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(10129) "verify client post handshake");
 
             SSL_set_verify(ssl, vmode_needed, ssl_callback_SSLVerify);
             SSL_verify_client_post_handshake(ssl);