Add missing APLOGNO.

10112 is wasted because it is in my tree only.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1820036 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christophe Jaillet
2018-01-04 06:11:18 +00:00
parent 9dc368ade0
commit 0ceec122ae
2 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
10111
10117

View File

@ -1165,7 +1165,7 @@ static apr_status_t md_get_certificate(server_rec *s, apr_pool_t *p,
*pkeyfile = NULL;
*pcertfile = NULL;
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO()
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO(10113)
"md_get_certificate called for vhost %s.", s->server_hostname);
sc = md_config_get(s);
@ -1182,7 +1182,7 @@ static apr_status_t md_get_certificate(server_rec *s, apr_pool_t *p,
* that server with SSL certs, has misspelled a server name or we have
* a bug that prevented us from taking responsibility for this server.
* Either way, make some polite noise */
ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO()
ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO(10114)
"asked for certificate of server %s which has no MD assigned. This "
"could be ok, but most likely it is either a misconfiguration or "
"a bug. Please check server names and MD names carefully and if "
@ -1197,7 +1197,7 @@ static apr_status_t md_get_certificate(server_rec *s, apr_pool_t *p,
md = md_reg_get(reg, sc->assigned->name, p);
if (!md) {
ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO()
ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO(10115)
"unable to hand out certificates, as registry can no longer "
"find MD '%s'.", sc->assigned->name);
return APR_ENOENT;
@ -1226,7 +1226,7 @@ static apr_status_t md_get_certificate(server_rec *s, apr_pool_t *p,
}
}
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO()
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO(10116)
"%s: providing fallback certificate for server %s",
md->name, s->server_hostname);
return APR_EAGAIN;