From: Eric Covener Date: Fri, 30 Jun 2023 12:31:28 +0000 (+0000) Subject: typos/whitespace X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba906d321794a38c2c38bf96ab8e6b8c77712059;p=thirdparty%2Fapache%2Fhttpd.git typos/whitespace what's one more rev? [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1910705 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 95697c911ad..1e97d8b75d4 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -3911,14 +3911,14 @@ static const char *cmd_rewriterule(cmd_parms *cmd, void *in_dconf, if (*(a2_end-1) == '?') { /* a literal ? at the end of the unsubstituted rewrite rule */ if (newrule->flags & RULEFLAG_QSAPPEND) { - /* with QSA, splitoutqueryargs will safely handle it if RULEFLAG_QSLAST is set */ + /* with QSA, splitout_queryargs will safely handle it if RULEFLAG_QSLAST is set */ newrule->flags |= RULEFLAG_QSLAST; } else { - /* avoid getting a a query string via inadvertent capture */ + /* avoid getting a query string via inadvertent capture */ newrule->flags |= RULEFLAG_QSNONE; - /* trailing ? has done its job, but splitoutqueryargs will not chop it off */ - *(a2_end-1) = '\0'; + /* trailing ? has done its job, but splitout_queryargs will not chop it off */ + *(a2_end-1) = '\0'; } } else if (newrule->flags & RULEFLAG_QSDISCARD) {