mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Back the whole change out until I figure out how to obtain O_APPEND,
it can't be used in this field at all.
This commit is contained in:
parent
44575f7350
commit
4099894921
1 changed files with 0 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue