* vfs/tar.c: Minor cleanup.

This commit is contained in:
Pavel Tsekov 2006-04-18 07:27:21 +00:00
parent 17696f8d13
commit 148efdda35
2 changed files with 4 additions and 12 deletions

View File

@ -1,3 +1,7 @@
2006-04-18 Pavel Tsekov <ptsekov@gmx.net>
* tar.c: Minor cleanup.
2006-04-17 Pavel Tsekov <ptsekov@gmx.net>
* tar.c (PREFIX_SIZE): New macro definition.

View File

@ -172,18 +172,6 @@ union record {
Tape volume doesn't match the one
specified on the command line */
/*
* We default to Unix Standard format rather than 4.2BSD tar format.
* The code can actually produce all three:
* f_standard ANSI standard
* f_oldarch V7
* neither 4.2BSD
* but we don't bother, since 4.2BSD can read ANSI standard format anyway.
* The only advantage to the "neither" option is that we can cmp our
* output to the output of 4.2BSD tar, for debugging.
*/
#define f_standard (!f_oldarch)
#define isodigit(c) ( ((c) >= '0') && ((c) <= '7') )
/*