From ce2c6eadf1a7f49465a51a4377f2705ce637715c Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Fri, 1 Jun 2001 03:56:50 +0000 Subject: Fix for EINTR problems when using jobserver. New translation files. Fix for @+ inside define macros being applied too widely. Various other bug fixes. --- arscan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arscan.c') diff --git a/arscan.c b/arscan.c index 03ecb7c..fc003e9 100644 --- a/arscan.c +++ b/arscan.c @@ -797,8 +797,8 @@ ar_member_touch (arname, memname) if (AR_HDR_SIZE != write (fd, (char *) &ar_hdr, AR_HDR_SIZE)) goto lose; /* The file's mtime is the time we we want. */ - while (fstat (fd, &statbuf) < 0 && EINTR_SET) - ; + if (fstat (fd, &statbuf) < 0) + goto lose; #if defined(ARFMAG) || defined(ARFZMAG) || defined(AIAMAG) || defined(WINDOWS32) /* Advance member's time to that time */ for (i = 0; i < sizeof ar_hdr.ar_date; i++) -- cgit v1.2.3