On 18/06/2019 14:38, Stefan Eissing wrote:
> I always run in maintainer mode, but on MacOS. gcc is often more picky. Is
> that what you use?
Yes gcc looks quite clever now ;-) see the patch attached.
BTW: that is the only one in 2.4.x now my branch wasn't up to date...
>
>> Am 18.06.2019 um 14:33 schrieb jean-frederic clere <[email protected]>:
>>
>> Hi,
>>
>> I have spotted a bunch of errors when using ./configure
>> --enable-maintainer-mode on the branch 2.4.x, do we plan to fix those?
>>
>> Some are really errors (probably core with bad httpd,conf) some are more
>> tricky...
>>
>> --
>> Cheers
>>
>> Jean-Frederic
>
>
--
Cheers
Jean-Frederic
Index: modules/ssl/ssl_engine_init.c
===================================================================
--- modules/ssl/ssl_engine_init.c (revision 1861562)
+++ modules/ssl/ssl_engine_init.c (working copy)
@@ -1780,11 +1780,11 @@
if (key_file && cert_file) {
ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, s,
- "%s: installing key=%s, cert=%s, chain=%s",
- ssl_util_vhostid(p, s), key_file, cert_file,
chain_file);
+ "%s: installing key=%s, cert=%s",
+ ssl_util_vhostid(p, s), key_file, cert_file);
APR_ARRAY_PUSH(pks->key_files, const char *) = key_file;
APR_ARRAY_PUSH(pks->cert_files, const char *) = cert_file;
- sc->server->cert_chain = chain_file;
+ sc->server->cert_chain = NULL;
}
if (APR_STATUS_IS_EAGAIN(rv)) {