You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2012/07/16 19:37:21 UTC

svn commit: r1362160 - /httpd/httpd/branches/2.4.x/modules/mappers/mod_rewrite.c

Author: rjung
Date: Mon Jul 16 17:37:21 2012
New Revision: 1362160

URL: http://svn.apache.org/viewvc?rev=1362160&view=rev
Log:
Reduce code drift from trunk.

Style nit.

Modified:
    httpd/httpd/branches/2.4.x/modules/mappers/mod_rewrite.c

Modified: httpd/httpd/branches/2.4.x/modules/mappers/mod_rewrite.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/mappers/mod_rewrite.c?rev=1362160&r1=1362159&r2=1362160&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/mappers/mod_rewrite.c (original)
+++ httpd/httpd/branches/2.4.x/modules/mappers/mod_rewrite.c Mon Jul 16 17:37:21 2012
@@ -3276,7 +3276,8 @@ static const char *cmd_rewritecond(cmd_p
 
                 case 'g':
                     if (a2[2] == 't') {
-                        a2 += 3; newcond->ptype = CONDPAT_INT_GT;
+                        a2 += 3;
+                        newcond->ptype = CONDPAT_INT_GT;
                     }
                     else if (a2[2] == 'e') {
                         a2 += 3;