On Tuesday 15 June 2010, Ruediger Pluem wrote:
> > +AP_DECLARE(void) ap_log_cserror_(const char *file, int line, int
> > module_index, + int level,
> > apr_status_t status, + const
> > conn_rec *c, const server_rec *s,
> > + const char *fmt, ...)
> > +{
> > + va_list args;
> > +
> > + va_start(args, fmt);
> > + log_error_core(file, line, module_index, level, status, s,
> > c, + NULL, NULL, fmt, args);
>
> Don't we need to patch log_error_core as well?
> IMHO if c != NULL it prefers the setting from c in any case, but
True. Thanks.
Fixed in r954976