From 40998949219dc245f0bd54061a2ba99ff67ab0cf Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Tue, 22 Jul 2014 20:13:46 +0000 Subject: [PATCH] Back the whole change out until I figure out how to obtain O_APPEND, it can't be used in this field at all. --- lib/libc/stdio/ftell.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/libc/stdio/ftell.c b/lib/libc/stdio/ftell.c index 258adb963564..2c8800ccfe19 100644 --- a/lib/libc/stdio/ftell.c +++ b/lib/libc/stdio/ftell.c @@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$"); #include "namespace.h" #include #include -#include #include #include #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