fix LSTAT intrinsic per Krister Walfridsson <cato@df.lth.se>

From-SVN: r25339
This commit is contained in:
Craig Burley 1999-02-20 14:55:52 +00:00 committed by Craig Burley
parent 04be634669
commit 9074cde5db
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,9 @@
1999-02-20 Craig Burley <craig@jcb-sc.com>
From Krister Walfridsson <cato@df.lth.se>:
* libU77/lstat_.c (G77_lstat_0): Kill spurious setting
of element 6 to zero, as it undid the previous setting.
1999-02-15 Craig Burley <craig@jcb-sc.com>
* f2c.h: Delete my (old) email address.

View file

@ -69,7 +69,6 @@ integer G77_lstat_0 (const char *name, integer statb[13], const ftnlen Lname)
statb[8] = buf.st_atime;
statb[9] = buf.st_mtime;
statb[10] = buf.st_ctime;
statb[6] = 0;
#if HAVE_ST_BLKSIZE
statb[11] = buf.st_blksize;
#else