]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
typos/whitespace
authorEric Covener <covener@apache.org>
Fri, 30 Jun 2023 12:31:28 +0000 (12:31 +0000)
committerEric Covener <covener@apache.org>
Fri, 30 Jun 2023 12:31:28 +0000 (12:31 +0000)
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

modules/mappers/mod_rewrite.c

index 95697c911adede4e9cd91e1c67f467c3b9fb42f2..1e97d8b75d4fd592c9d59f89174434526c1cb74d 100644 (file)
@@ -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 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) {