diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2014-07-22 19:55:25 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2014-07-22 19:55:25 +0000 |
commit | 44575f7350eba36dbb9511aed129b67a7d033e85 (patch) | |
tree | 316af4746eb2cff3046e6bbe60a5d5c20f749eed | |
parent | e710ed26a3e80ceab739b66608a81ef53ce338bb (diff) |
Notes
-rw-r--r-- | lib/libc/stdio/ftell.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/ftell.c b/lib/libc/stdio/ftell.c index 7259e72109ee6..258adb9635649 100644 --- a/lib/libc/stdio/ftell.c +++ b/lib/libc/stdio/ftell.c @@ -39,6 +39,7 @@ __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" @@ -118,7 +119,7 @@ _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) { + if (fp->_flags & (__SAPP|O_APPEND)) { pos = _sseek(fp, (fpos_t)0, SEEK_END); if (pos == -1) return (1); |