This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new b8dc1cc487 Fix typo b8dc1cc487 is described below commit b8dc1cc4872b9d8e60f0bcf411d7581afafc25ee Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue Jul 22 15:24:54 2025 +0100 Fix typo --- java/org/apache/catalina/webresources/TomcatJarInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/catalina/webresources/TomcatJarInputStream.java b/java/org/apache/catalina/webresources/TomcatJarInputStream.java index 9247d8a031..75a9e73488 100644 --- a/java/org/apache/catalina/webresources/TomcatJarInputStream.java +++ b/java/org/apache/catalina/webresources/TomcatJarInputStream.java @@ -42,7 +42,7 @@ public class TomcatJarInputStream extends JarInputStream { ZipEntry ze = super.createZipEntry(name); if (metaInfEntry == null && "META-INF/".equals(name)) { metaInfEntry = (JarEntry) ze; - } else if (manifestEntry == null && "META-INF/MANIFESR.MF".equals(name)) { + } else if (manifestEntry == null && "META-INF/MANIFEST.MF".equals(name)) { manifestEntry = (JarEntry) ze; } return ze; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org