X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f Date: Sat, 30 Mar 2002 20:48:45 +0300 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: djgpp AT delorie DOT com Message-Id: <5137-Sat30Mar2002204844+0300-eliz@is.elta.co.il> X-Mailer: emacs 21.2.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: <3CA5BC10.38C00B90@yahoo.com> (message from CBFalconer on Sat, 30 Mar 2002 13:24:31 GMT) Subject: Re: djtar bug References: <3CA5BC10 DOT 38C00B90 AT yahoo DOT com> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: CBFalconer > Newsgroups: comp.os.msdos.djgpp > Date: Sat, 30 Mar 2002 13:24:31 GMT > > [1] c:\dnld\scratch\blah>djtar \stds\aarm.doc.gz > --- !!Directory checksum error!! --- > Abort! > Exiting due to signal SIGABRT I don't think this is a bug: as far as I get from its name, aarm.doc.gz is not an archive, but simply a Gzip'ped aarm.doc file. You should use gunzip to unzip it, and then to use whatever program is needed to read it. DJTAR is not a replacement of Gzip. It's a program to unpack file archives, either compressed or uncompressed. It uncompresses the file you feed it, and then expects to see either a tar structure or a PKZip-style zip archive. If the file you give it ends with a .zip, it assumes it's a zip archive; otherwise it tries to unpack it as a tar archive. If there's no valid tar structure, it bails out. Which it did in this case. Only if aarm.doc.gz is a compressed archive would this qualify as a bug.