From 230ea0b75a2c88f80a7cde15690daa19f2e1cc19 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Sat, 28 Aug 2004 10:36:19 +0000 Subject: [PATCH] Fix darn typo. Submitted by: Jan Kratochvil git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104878 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 3 +++ modules/mappers/mod_rewrite.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 04e148bd32c..46e2eeba574 100644 --- 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 ] + *) 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 diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index ca51ce378f2..e2e9207943e 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -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 { -- 2.47.3