]> granicus.if.org Git - apache/commitdiff
Fix darn typo.
authorAndré Malo <nd@apache.org>
Sat, 28 Aug 2004 10:36:19 +0000 (10:36 +0000)
committerAndré Malo <nd@apache.org>
Sat, 28 Aug 2004 10:36:19 +0000 (10:36 +0000)
Submitted by: Jan Kratochvil <rcpt-dev.AT.httpd.apache.org jankratochvil.net>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104878 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/mappers/mod_rewrite.c

diff --git a/CHANGES b/CHANGES
index 04e148bd32cff831f0f8ab76e6d29b97c96bf274..46e2eeba574cd0d4b06f35fef0e3522c876290e2 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) Recognize QSA flag in mod_rewrite again.
+     [Jan Kratochvil <rcpt-dev.AT.httpd.apache.org jankratochvil.net>]
+
   *) Restructured mod_auth_ldap to fit the new authentication model.
      The module is now called authnz_ldap and has been moved out of
      the modules/experimental area and into modules/aaa with the other
index ca51ce378f26aecb3794e2ad891d108c5b619391..e2e9207943e11c0b6790e6395a206ff6ce27feae 100644 (file)
@@ -3293,8 +3293,8 @@ static const char *cmd_rewriterule_setflag(apr_pool_t *p, void *_cfg,
 
     case 'q':
     case 'Q':
-        if (   !strcasecmp(key, "QSA")
-            || !strcasecmp(key, "qsappend")) {             /* qsappend */
+        if (   !strcasecmp(key, "SA")
+            || !strcasecmp(key, "sappend")) {              /* qsappend */
             cfg->flags |= RULEFLAG_QSAPPEND;
         }
         else {