/[Apache-SVN]/tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/ApplicationFilterFactory.java
ViewVC logotype

Diff of /tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/ApplicationFilterFactory.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

--- tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/ApplicationFilterFactory.java	2006/04/04 00:01:51	391183
+++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/ApplicationFilterFactory.java	2006/04/04 00:03:14	391184
@@ -196,13 +196,18 @@ public final class ApplicationFilterFact
     /**
      * Return <code>true</code> if the context-relative request path
      * matches the requirements of the specified filter mapping;
-     * otherwise, return <code>null</code>.
+     * otherwise, return <code>false</code>.
      *
      * @param filterMap Filter mapping being checked
      * @param requestPath Context-relative request path of this request
      */
     private boolean matchFiltersURL(FilterMap filterMap, String requestPath) {
 
+        // Check the specific "*" special URL pattern, which also matches
+        // named dispatches
+        if (filterMap.getAllMatch())
+            return (true);
+        
         if (requestPath == null)
             return (false);
 

 

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26