summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-04-14Correct typo, fchmod -> fchown, in a comment.Jim Meyering
2005-04-13* getdate.y (zone): Allow relunit_snumber after tZONE.Paul Eggert
2005-04-13(zone): Allow relunit_snumber after tZONE, soPaul Eggert
that "UTC +1 second" continues to work. Problem reported by Dmitry V. Levin. (relunit_snumber): New rule. (relunit): Use it.
2005-04-12src/ls.c (usage): "uid" -> "user ID".Paul Eggert
2005-04-12(usage): uid -> user IDPaul Eggert
2005-04-12* getdate.y: Fix problem with parsing GMT time stamps during London summers.Paul Eggert
2005-04-12(universal_time_zone_table): New constant.Paul Eggert
(time_zone_table): Remove GMT, UT, UTC entries; they're now in universal_time_zone_table. (lookup_zone): Prefer universal_time_zone_table to local_time_zone_table, so that "GMT" time stamps are allowed in London during the summer. Problem reported by Ian Abbott.
2005-04-12*** empty log message ***Jim Meyering
2005-04-12(tsort): Use "%s" as the format string, rather than a diagnostic or a file name.Jim Meyering
2005-04-12(compare_files): Remove declaration of unused local.Jim Meyering
2005-04-12For consistency, standardize on "user ID" rather than "uid".Paul Eggert
2005-04-12Reword usage, man pages to use "user ID" rather than "uid" etc.Paul Eggert
2005-04-12(usage, main): Use "user ID", not "UID", and similarly for "group ID".Paul Eggert
2005-04-12(usage): Use "user ID", not "UID", and similarlyPaul Eggert
for "group ID".
2005-04-12Reword to match coreutils.texi.Paul Eggert
2005-04-12Reword to match user manual.Paul Eggert
2005-04-12For consistency, standardize on "user ID" ratherPaul Eggert
than "uid" or "UID" or "user id". Similarly for "group ID".
2005-04-11Regenerate.Paul Eggert
2005-04-11Add bulletproofing for cases where stdin, stdout, or stderr are closed.Paul Eggert
2005-04-11Add bulletproofing for cases where stdin, stdout, or stderr are closed.Paul Eggert
2005-04-11Include stdio_safer.h.Paul Eggert
(check_file): Don't assume fopen cannot return stdin or stdout.
2005-04-11(next_file): Don't assume fopen cannot return stdin.Paul Eggert
2005-04-11(have_read_stdin): Remove; no longer needed. All usesPaul Eggert
removed. (tsort): Do not assume fopen can't return stdin. Close stdin before returning. All uses changed.
2005-04-11Include unistd-safer.h.Paul Eggert
(touch): Use fd_safer.
2005-04-11Include stdio-safer.h.Paul Eggert
(tee): Use fopen_safer.
2005-04-11Include unistd-safer.h rather than fcntl-safer.h.Paul Eggert
(recheck, tail_file): Use fd_safer rather than open_safer.
2005-04-11Include unistd-safer.h.Paul Eggert
(copy_to_temp): Use fd_safer. (tac_file): Don't assume fopen cannot return stdin.
2005-04-11(bsd_sum_file, sysv_sym_file):Paul Eggert
Use same pattern as elsewhere for checking for stdin.
2005-04-11Include unistd-safer.h.Paul Eggert
(cwrite): Use fd_safer. Replace mystery constant 0666 with symbolic version, as POSIX requires.
2005-04-11Include unistd-safer.h.Paul Eggert
(create_temp_file): Use fd_safer. (xfclose): Don't assume fileno (stdin) == STDIN_FILENO, etc.
2005-04-11Include unistd-safer.h.Paul Eggert
(wipename): Use fd_safer on directory file descriptor. (wipefile): Remove special case for /dev/fd/* on older hosts. It didn't work in general, and wasn't documented. Use fd_safer.
2005-04-11(main): Don't assume fopen returns stdout after closingPaul Eggert
stdout. Use freopen instead.
2005-04-11Include stdio-safer.h.Paul Eggert
(open_file): Use fopen_safer. (close_file): Don't assume fopen does not return stdin.
2005-04-11(paste_serial): Don't assume fopen does not return stdin.Paul Eggert
2005-04-11(check_and_close): Don't assume fopen does not return stdin.Paul Eggert
2005-04-11Include unistd-safer.h.Paul Eggert
(main): Don't dup stderr to stdin or stdout by mistake.
2005-04-11(digest_file, digest_check):Paul Eggert
Don't assume that fopen does not return stdin.
2005-04-11Include stdio-safer.h.Paul Eggert
(main): Use fopen_safer. Simplify the resulting code.
2005-04-11(head_file): Don't assume open does not return 0.Paul Eggert
2005-04-11(dc_parse_file): Don't assume fopen does not return stdin.Paul Eggert
2005-04-11Include stdio-safer.h.Paul Eggert
(input_desc): Remove unnecessary static initialization. (set_input_file): Use STDIN_FILENO, not 0. (create_output_file): Use fopen_safer.
2005-04-11Include unistd-safer.h.Paul Eggert
(copy_reg): Use fd_safer.
2005-04-11Include stdio-safer.h.Paul Eggert
(compare_files): Exit right away on I/O error rather than continuing and producing confusing output and error messages. Return void, not int; all callers changed. Use fopen_safer to avoid confusion with file descriptors.
2005-04-11Add bulletproofing for cases where stdin, stdout, or stderr are closed.Paul Eggert
2005-04-11(gl_PREREQ): Don't require gl_FCNTL_SAFER.Paul Eggert
2005-04-11(gl_UNISTD_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.Paul Eggert
Invoke gl_PREREQ_FD_SAFER. (gl_PREREQ_FD_SAFER): New macro.
2005-04-11(gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.Paul Eggert
2005-04-11Add bulletproofing for cases where stdin, stdout, or stderr are closed.Paul Eggert
2005-04-11(libfetish_a_SOURCES): Remove dup-safer.c,Paul Eggert
fcntl-safer.h, fopen-safer.c, open-safer.c, stdio-safer.h, unistd-safer.h.
2005-04-11(fd_safer): New decl.Paul Eggert