This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 421ca5b05a Fix typo
421ca5b05a is described below
commit 421ca5b05a2fec599ae271acb2acf7c87441eadb
Author: Mark Thomas <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]