1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-16 08:38:48 +02:00

*** empty log message ***

This commit is contained in:
Jim Meyering
2004-10-29 21:55:21 +00:00
parent 259934f3a4
commit bbda05b8ee

View File

@@ -1,7 +1,21 @@
2004-10-21 Jim Meyering <jim@meyering.net>
2004-10-29 Jim Meyering <jim@meyering.net>
* Version 5.3.0.
`tac /proc/modules' would print nothing
* src/tac.c (copy_to_temp): Renamed from save_stdin, since
now it copies a general file descriptor, not just stdin.
(tac_nonseekable): Renamed/adapted from tac_stdin.
(tac_file): Get fd via `open' directly rather than via fopen/fileno,
since we never used the stream. Perform "-" to stdin mapping here
rather than in main. Determine whether a file is seekable,
by trying to `lseek' to its end, and dispatch to tac_seekable or
tac_nonseekable accordingly.
(main): Rewrite argument handling now that it uses only tac_file.
Reported by Harald Dunkel in http://bugs.debian.org/278604.
2004-10-21 Jim Meyering <jim@meyering.net>
* tests/mv/leak-fd: New file.
* tests/mv/Makefile.am (TESTS): Add it.
* tests/rm/dot-rel: New file.