diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2000-03-09 09:21:46 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-03-09 09:21:46 +0000 |
commit | ce5adf112e117fcd61beb4582c1d8e6a24065b25 (patch) | |
tree | 31f5b0e5dc2259f95abab85fb366f1095a9be227 /contrib/libf2c | |
parent | cbab3205286065bef3f77788d973d62378b6d6f0 (diff) |
Bring in bug fixes from the GCC anoncvs server's "gcc-2_95-branch"
branch as of March 7th, 2000.
Notes
Notes:
svn path=/vendor/gcc/dist/; revision=57844
Diffstat (limited to 'contrib/libf2c')
-rw-r--r-- | contrib/libf2c/ChangeLog | 5 | ||||
-rw-r--r-- | contrib/libf2c/libI77/endfile.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/contrib/libf2c/ChangeLog b/contrib/libf2c/ChangeLog index 4e9eccc84661..c3ca9a9043ba 100644 --- a/contrib/libf2c/ChangeLog +++ b/contrib/libf2c/ChangeLog @@ -1,3 +1,8 @@ +Mon Jan 24 20:28:35 CET 2000 David M. Gay <dmg@bell-labs.com> + + * libI77/endfile.c (t_runc): set state to writing + (b->uwrt = 1) when an endfile statement requires copying the file. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff --git a/contrib/libf2c/libI77/endfile.c b/contrib/libf2c/libI77/endfile.c index 0e4ac0318e9f..8e3e8c48fc7f 100644 --- a/contrib/libf2c/libI77/endfile.c +++ b/contrib/libf2c/libI77/endfile.c @@ -103,6 +103,7 @@ t_runc(alist *a) rewind(tf); if (copy(tf, loc, bf)) goto bad1; + b->uwrt = 1; b->urw = 2; #ifdef NON_UNIX_STDIO if (b->ufmt) { |