Use correct arguments for an error message in TagLibraryInfoImpl.
authorkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 29 Oct 2010 00:56:05 +0000 (00:56 +0000)
committerkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 29 Oct 2010 00:56:05 +0000 (00:56 +0000)
It is a followup to r937791

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1028565 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/TagLibraryInfoImpl.java

index 5396299..da8fdd3 100644 (file)
@@ -179,7 +179,7 @@ class TagLibraryInfoImpl extends TagLibraryInfo implements TagConstants {
                     parseTLD(jarResource.getUrl(), in, jarResource);
                 } catch (Exception ex) {
                     err.jspError(mark, "jsp.error.tld.unable_to_read", jarResource.getUrl(),
-                            jarResource.getUrl(), ex.toString());
+                            tldName, ex.toString());
                 }
             }
         } finally {