Back out the change in rev.1.4 and fix the formatting of the change
in rev.1.3. 1.4 just broke 1.3 for the -x case. This fixes PR 721 and merges archive.c with 4.4Lite2.
This commit is contained in:
parent
89e0ab3dba
commit
2f1196a64a
@ -276,7 +276,6 @@ copy_ar(cfp, size)
|
||||
CF *cfp;
|
||||
off_t size;
|
||||
{
|
||||
int pad_odd_read;
|
||||
static char pad = '\n';
|
||||
off_t sz;
|
||||
int from, nr, nw, off, to;
|
||||
@ -300,12 +299,8 @@ copy_ar(cfp, size)
|
||||
error(cfp->rname);
|
||||
}
|
||||
|
||||
if (already_written)
|
||||
pad_odd_read = (cfp->flags & RPAD) && ((size + chdr.lname) & 1);
|
||||
else
|
||||
pad_odd_read = (cfp->flags & RPAD) && (size & 1);
|
||||
|
||||
if (pad_odd_read && (nr = read(from, buf, 1)) != 1) {
|
||||
if (cfp->flags & RPAD && (size + chdr.lname) & 1 &&
|
||||
(nr = read(from, buf, 1)) != 1) {
|
||||
if (nr == 0)
|
||||
badfmt();
|
||||
error(cfp->rname);
|
||||
|
Loading…
Reference in New Issue
Block a user