From c3ab480979ca44b083474ccac3f4c4bd5c004ee9 Mon Sep 17 00:00:00 2001 From: Ervin Hegedus Date: Sat, 26 Apr 2025 20:31:43 +0200 Subject: [PATCH] Typo fix. Co-authored-by: Max Leske <250711+theseion@users.noreply.github.com> --- apache2/msc_xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache2/msc_xml.c b/apache2/msc_xml.c index 4c64b5d9..a24f5b77 100644 --- a/apache2/msc_xml.c +++ b/apache2/msc_xml.c @@ -241,7 +241,7 @@ int xml_process_chunk(modsec_rec *msr, const char *buf, unsigned int size, char msr->txcfg->parse_xml_into_args != MSC_XML_ARGS_ONLYARGS) { xmlParseChunk(msr->xml->parsing_ctx, buf, size, 0); if (msr->xml->parsing_ctx->wellFormed != 1) { - *error_msg = apr_psprintf(msr->mp, "XML: Failed parsing document."); + *error_msg = apr_psprintf(msr->mp, "XML: Failed to parse document."); return -1; } }