diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-02-18 07:33:00 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-02-18 16:51:13 -0800 |
commit | 96f301c72e7ca9ec7be0d1453f89fa8e6d49ee85 (patch) | |
tree | 0400ac1f5fc914a1991e4e2008980f9b937372bd /stream.c | |
parent | 4541ae4bec106d3d680edf3c25ca8f80287a83c9 (diff) | |
download | txr-96f301c72e7ca9ec7be0d1453f89fa8e6d49ee85.tar.gz txr-96f301c72e7ca9ec7be0d1453f89fa8e6d49ee85.tar.bz2 txr-96f301c72e7ca9ec7be0d1453f89fa8e6d49ee85.zip |
* stream.c (open_tail): Fix 2013-12-02 regression:
seek_to_end_p argument being ignored, with the
behavior being no initial seek to the end.
* txr.1: Clarified the behavior of the seek-to-end-p
option.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -2082,14 +2082,21 @@ val open_file(val path, val mode_str) val open_tail(val path, val mode_str, val seek_end_p) { + FILE *f = w_fopen(c_str(path), c_str(mode_str)); struct stdio_handle *h; val stream; unsigned long state = 0; - stream = make_tail_stream(0, path); + if (f && seek_end_p) + if (fseek(f, 0, SEEK_END) < 0) + uw_throwf(file_error_s, lit("error seeking to end of ~a: ~a/~s"), + path, num(errno), string_utf8(strerror(errno)), nao); + + stream = make_tail_stream(f, path); h = (struct stdio_handle *) stream->co.handle; h->mode = mode_str; - tail_strategy(stream, &state); + if (!f) + tail_strategy(stream, &state); return stream; } |