Skip to content

Commit

Permalink
Merge afb1b79 into d07b13a
Browse files Browse the repository at this point in the history
  • Loading branch information
mihyaeru21 committed Dec 3, 2018
2 parents d07b13a + afb1b79 commit d6159dc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/zip/entry.rb
Expand Up @@ -275,10 +275,10 @@ def pack_local_entry
zip64 = @extra['Zip64']
[::Zip::LOCAL_ENTRY_SIGNATURE,
@version_needed_to_extract, # version needed to extract
@gp_flags, # @gp_flags ,
@gp_flags, # @gp_flags
@compression_method,
@time.to_binary_dos_time, # @last_mod_time ,
@time.to_binary_dos_date, # @last_mod_date ,
@time.to_binary_dos_time, # @last_mod_time
@time.to_binary_dos_date, # @last_mod_date
@crc,
zip64 && zip64.compressed_size ? 0xFFFFFFFF : @compressed_size,
zip64 && zip64.original_size ? 0xFFFFFFFF : @size,
Expand Down Expand Up @@ -432,11 +432,11 @@ def pack_c_dir_entry
@header_signature,
@version, # version of encoding software
@fstype, # filesystem type
@version_needed_to_extract, # @versionNeededToExtract ,
@gp_flags, # @gp_flags ,
@version_needed_to_extract, # @versionNeededToExtract
@gp_flags, # @gp_flags
@compression_method,
@time.to_binary_dos_time, # @last_mod_time ,
@time.to_binary_dos_date, # @last_mod_date ,
@time.to_binary_dos_time, # @last_mod_time
@time.to_binary_dos_date, # @last_mod_date
@crc,
zip64 && zip64.compressed_size ? 0xFFFFFFFF : @compressed_size,
zip64 && zip64.original_size ? 0xFFFFFFFF : @size,
Expand Down

0 comments on commit d6159dc

Please sign in to comment.