mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-30 08:19:09 +00:00
This commit was generated by cvs2svn to compensate for changes in r146901,
which included commits to RCS files with non-trunk default branches.
This commit is contained in:
commit
8fb36271ea
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146902
@ -1,3 +1,20 @@
|
|||||||
|
2005-05-19 Release Manager
|
||||||
|
|
||||||
|
* GCC 3.4.4 released.
|
||||||
|
|
||||||
|
2005-01-05 Eric Botcazou <ebotcazou@libertysurf.fr>
|
||||||
|
|
||||||
|
PR libf2c/17636
|
||||||
|
* libI77/err.c (f__nowwriting): Call fseek if end-of-file.
|
||||||
|
|
||||||
|
2004-11-04 Release Manager
|
||||||
|
|
||||||
|
* GCC 3.4.3 released.
|
||||||
|
|
||||||
|
2004-09-06 Release Manager
|
||||||
|
|
||||||
|
* GCC 3.4.2 released.
|
||||||
|
|
||||||
2004-07-01 Release Manager
|
2004-07-01 Release Manager
|
||||||
|
|
||||||
* GCC 3.4.1 released.
|
* GCC 3.4.1 released.
|
||||||
|
@ -239,7 +239,13 @@ f__nowwriting (unit * x)
|
|||||||
extern char *f__w_mode[];
|
extern char *f__w_mode[];
|
||||||
|
|
||||||
if (x->urw & 2)
|
if (x->urw & 2)
|
||||||
goto done;
|
{
|
||||||
|
/* Not required according to C99 7.19.5.3, but
|
||||||
|
this really helps on Solaris. */
|
||||||
|
if (feof (x->ufd))
|
||||||
|
FSEEK (x->ufd, 0, SEEK_END);
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
if (!x->ufnm)
|
if (!x->ufnm)
|
||||||
goto cantwrite;
|
goto cantwrite;
|
||||||
ufmt = x->url ? 0 : x->ufmt;
|
ufmt = x->url ? 0 : x->ufmt;
|
||||||
|
Loading…
Reference in New Issue
Block a user