jdk/src/java.base/share/classes/java/util/zip/ZipInputStream.java
changeset 29226 b675016fabfd
parent 26615 faabac3002f1
child 45434 4582657c7260
--- a/jdk/src/java.base/share/classes/java/util/zip/ZipInputStream.java	Sat Feb 28 10:47:07 2015 +0800
+++ b/jdk/src/java.base/share/classes/java/util/zip/ZipInputStream.java	Sat Feb 28 13:17:13 2015 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -303,7 +303,7 @@
             throw new ZipException("encrypted ZIP entry not supported");
         }
         e.method = get16(tmpbuf, LOCHOW);
-        e.time = dosToJavaTime(get32(tmpbuf, LOCTIM));
+        e.xdostime = get32(tmpbuf, LOCTIM);
         if ((flag & 8) == 8) {
             /* "Data Descriptor" present */
             if (e.method != DEFLATED) {