summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2023-06-30 14:31:28 +0200
committerEric Covener <covener@apache.org>2023-06-30 14:31:28 +0200
commitba906d321794a38c2c38bf96ab8e6b8c77712059 (patch)
treef993302f9316ae6638be8f5d637d3867b9f3e172 /modules
parentproxy: in proxy tunnels, use the smaller timeout value of (diff)
downloadapache2-ba906d321794a38c2c38bf96ab8e6b8c77712059.tar.xz
apache2-ba906d321794a38c2c38bf96ab8e6b8c77712059.zip
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
Diffstat (limited to 'modules')
-rw-r--r--modules/mappers/mod_rewrite.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c
index 95697c911a..1e97d8b75d 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) {