* ar.c: (extract_file): Change "#if POSIX_UTIME" to

"#ifdef POSIX_UTIME" to match other tests of POSIX_UTIME
	and avoid lossage when POSIX_UTIME is not defined at all.
This commit is contained in:
Fred Fish
1995-07-01 19:28:13 +00:00
parent 033d545b29
commit 8190614e91
2 changed files with 7 additions and 1 deletions

View File

@@ -727,7 +727,7 @@ extract_file (abfd)
if (preserve_dates)
{
#if POSIX_UTIME
#ifdef POSIX_UTIME
struct utimbuf tb;
tb.actime = buf.st_mtime;
tb.modtime = buf.st_mtime;