summaryrefslogtreecommitdiffstats
path: root/usr.bin/ar
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/ar')
-rw-r--r--usr.bin/ar/archive.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/usr.bin/ar/archive.c b/usr.bin/ar/archive.c
index 8a6fe2f..cd704b9 100644
--- a/usr.bin/ar/archive.c
+++ b/usr.bin/ar/archive.c
@@ -276,6 +276,7 @@ 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;
@@ -299,8 +300,12 @@ copy_ar(cfp, size)
error(cfp->rname);
}
- if (cfp->flags & RPAD && (size + chdr.lname) & 1 &&
- (nr = read(from, buf, 1)) != 1) {
+ 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 (nr == 0)
badfmt();
error(cfp->rname);
OpenPOWER on IntegriCloud