@@ -209,26 +209,26 @@ def handler(signum, frame):
209209 sys .exit (1 )
210210 input_file = tempout
211211 pyarchivefile .UnPackArchiveFile (input_file , getargs .output , False , 0 , 0 , getargs .skipchecksum ,
212- fnamedict , getargs .verbose , getargs .preserve , getargs .preserve , False )
212+ fnamedict , getargs .verbose , getargs .preserve , getargs .preserve , False , False )
213213 elif active_action == 'list' :
214214 if getargs .convert :
215215 checkcompressfile = pyarchivefile .CheckCompressionSubType (
216216 input_file , fnamedict , True )
217217 if ((IsNestedDict (fnamedict ) and compresscheck in fnamedict ) or (IsSingleDict (fnamedict ) and compresscheck == fnamedict ['format_magic' ])):
218- tmpout = pyarchivefile .ArchiveFileListFiles (input_file , "auto" , 0 , 0 , getargs .skipchecksum , fnamedict , getargs .verbose , False )
218+ tmpout = pyarchivefile .ArchiveFileListFiles (input_file , "auto" , 0 , 0 , getargs .skipchecksum , fnamedict , False , getargs .verbose , False )
219219 else :
220- tmpout = pyarchivefile .InFileListFiles (input_file , getargs .verbose , fnamedict , False )
220+ tmpout = pyarchivefile .InFileListFiles (input_file , getargs .verbose , fnamedict , False , False )
221221 if (not tmpout ):
222222 sys .exit (1 )
223223 else :
224- pyarchivefile .ArchiveFileListFiles (input_file , "auto" , 0 , 0 , getargs .skipchecksum , fnamedict , getargs .verbose , False )
224+ pyarchivefile .ArchiveFileListFiles (input_file , "auto" , 0 , 0 , getargs .skipchecksum , fnamedict , False , getargs .verbose , False )
225225 elif active_action == 'validate' :
226226 if getargs .convert :
227227 checkcompressfile = pyarchivefile .CheckCompressionSubType (
228228 input_file , fnamedict , True )
229229 tempout = BytesIO ()
230230 if ((IsNestedDict (fnamedict ) and compresscheck in fnamedict ) or (IsSingleDict (fnamedict ) and compresscheck == fnamedict ['format_magic' ])):
231- tmpout = pyarchivefile .RePackArchiveFile (input_file , tempout , getargs .compression , getargs .wholefile , getargs .level , pyarchivefile .compressionlistalt , False , 0 , 0 , [getargs .checksum , getargs .checksum , getargs .checksum ], getargs .skipchecksum , [], {}, fnamedict , False , False )
231+ tmpout = pyarchivefile .RePackArchiveFile (input_file , tempout , getargs .compression , getargs .wholefile , getargs .level , pyarchivefile .compressionlistalt , False , 0 , 0 , [getargs .checksum , getargs .checksum , getargs .checksum ], getargs .skipchecksum , [], {}, fnamedict , False , False , False )
232232 else :
233233 tmpout = pyarchivefile .PackArchiveFileFromInFile (
234234 input_file , tempout , __file_format_default__ , getargs .compression , getargs .wholefile , getargs .level , pyarchivefile .compressionlistalt , [getargs .checksum , getargs .checksum , getargs .checksum ], [], {}, fnamedict , False , False )
0 commit comments