larryi 01/09/23 08:29:51 Modified: src/share/org/apache/tomcat/modules/config IISConfig.java Log: Fix syntax for extension mapping and use default.worker Revision Changes Path 1.8 +2 -2 jakarta-tomcat/src/share/org/apache/tomcat/modules/config/IISConfig.java Index: IISConfig.java =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/config/IISConfig.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- IISConfig.java 2001/08/11 03:37:28 1.7 +++ IISConfig.java 2001/09/23 15:29:51 1.8 @@ -128,7 +128,7 @@ @author Costin Manolache @author Larry Isaacs @author Gal Shachor - @version $Revision: 1.7 $ + @version $Revision: 1.8 $ */ public class IISConfig extends BaseJkConfig { @@ -333,7 +333,7 @@ { if( debug > 0 ) log( "Adding extension map for " + ctxPath + "/*." + ext ); - uri_worker.println(ctxPath + "/*." + ext + " " + jkProto); + uri_worker.println(ctxPath + "/*." + ext + "=$(default.worker)"); return true; }