diff options
author | ache <ache@FreeBSD.org> | 2014-07-22 20:13:46 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2014-07-22 20:13:46 +0000 |
commit | f2c8c4c7d8375602f7f002c9b28991907a6a1021 (patch) | |
tree | c40446787290988708c49e374dddcd2da2b6971b /lib/libc/stdio | |
parent | 1c7fcde2d931e077cf96fa311598314538ac227c (diff) | |
download | FreeBSD-src-f2c8c4c7d8375602f7f002c9b28991907a6a1021.zip FreeBSD-src-f2c8c4c7d8375602f7f002c9b28991907a6a1021.tar.gz |
Back the whole change out until I figure out how to obtain O_APPEND,
it can't be used in this field at all.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/ftell.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libc/stdio/ftell.c b/lib/libc/stdio/ftell.c index 258adb9..2c8800c 100644 --- a/lib/libc/stdio/ftell.c +++ b/lib/libc/stdio/ftell.c @@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$"); #include "namespace.h" #include <sys/types.h> #include <errno.h> -#include <fcntl.h> #include <limits.h> #include <stdio.h> #include "un-namespace.h" @@ -119,11 +118,6 @@ _ftello(FILE *fp, fpos_t *offset) if (HASUB(fp)) pos -= fp->_r; /* Can be negative at this point. */ } else if ((fp->_flags & __SWR) && fp->_p != NULL) { - if (fp->_flags & (__SAPP|O_APPEND)) { - pos = _sseek(fp, (fpos_t)0, SEEK_END); - if (pos == -1) - return (1); - } /* * Writing. Any buffered characters cause the * position to be greater than that in the |