Browse Source

--- Merging r26408 into '.':
U packages/paszlib/src/zipper.pp

# revisions: 26408
r26408 | marco | 2014-01-08 11:36:46 +0100 (Wed, 08 Jan 2014) | 3 lines
Changed paths:
M /trunk/packages/paszlib/src/zipper.pp

* fix hours timestamp conversion zipped file. Mantis #25499
(shift count off by one)

git-svn-id: branches/fixes_2_6@26409 -

marco 11 years ago
parent
commit
a925545bcf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/paszlib/src/zipper.pp

+ 1 - 1
packages/paszlib/src/zipper.pp

@@ -550,7 +550,7 @@ begin
   MS:=0;
   MS:=0;
   S:=(ZT and 31) shl 1;
   S:=(ZT and 31) shl 1;
   N:=(ZT shr 5) and 63;
   N:=(ZT shr 5) and 63;
-  H:=(ZT shr 12) and 31;
+  H:=ZT shr 11;
   D:=ZD and 31;
   D:=ZD and 31;
   M:=(ZD shr 5) and 15;
   M:=(ZD shr 5) and 15;
   Y:=((ZD shr 9) and 127)+1980;
   Y:=((ZD shr 9) and 127)+1980;