From: André Malo Date: Sat, 28 Aug 2004 10:36:19 +0000 (+0000) Subject: Fix darn typo. X-Git-Tag: STRIKER_2_1_0_RC1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=230ea0b75a2c88f80a7cde15690daa19f2e1cc19;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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 {