Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-03-18 | [struct Word] (paren, period, punct, final): Change the | Jim Meyering | |
type of each member from bool <MEMBER>:1 to unsigned int <MEMBER>:1. AIX 5.1's xlc could not compile the former. | |||
2003-03-16 | (rm): Put two local variables in static storage, | Jim Meyering | |
so they can't be clobbered by the potential longjmp. | |||
2003-03-15 | . | Jim Meyering | |
2003-03-14 | remove ansi2knr junk | Jim Meyering | |
2003-03-14 | . | Jim Meyering | |
2003-03-14 | . | Jim Meyering | |
2003-03-14 | . | Jim Meyering | |
2003-03-12 | . | Jim Meyering | |
2003-03-11 | (longopts): Don't hard-code `2' here. | Jim Meyering | |
Instead, just specify `&verbose', and ... (main): ... remove the `case 2:' block for --verbose. | |||
2003-03-11 | Don't segfault for a negative field width or precision in format string. | Jim Meyering | |
(UNSPECIFIED): Define. (print_direc): Use the special value, UNSPECIFIED, to indicate that field_width or precision has not been specified. (print_formatted): Fail if field_width or precision is the special value, UNSPECIFIED. | |||
2003-03-10 | (INT_MIN): Define, if necessary. | Jim Meyering | |
2003-03-09 | fix typo in comment | Jim Meyering | |
2003-03-09 | (AD_stack_pop): Cast sizeof... to int before changing its sign. | Jim Meyering | |
This avoids a warning from gcc on 64-bit systems. (pop_dir): Reverse order of sign change and cast, to be consistent with the above. | |||
2003-03-08 | Before, when using shred on a device, one had to specify --exact, | Jim Meyering | |
or be careful to choose a size that would not be rounded up and exceed the maximum value; that could result in a failure of the final write. (do_wipefd): --exact is now the default for non-regular files. Suggestion from Ben Elliston. (usage): Say it. | |||
2003-03-08 | Remove now-unused #include and #define directives. | Jim Meyering | |
2003-03-08 | (check-misc): Check for use of `defined' in #define directives. | Jim Meyering | |
Change to $(srcdir) before running grep. | |||
2003-03-08 | . | Jim Meyering | |
2003-03-08 | (process_file): If a file's size is not being counted | Jim Meyering | |
e.g., because it's a hard link to a file we've already counted, then don't print a line for it. | |||
2003-03-08 | `du -S' didn't work | Jim Meyering | |
Revert most of the `reorganization' change of 2003-02-20, and make the two-array approach work. | |||
2003-03-08 | *** empty log message *** | Jim Meyering | |
2003-03-08 | *** empty log message *** | Jim Meyering | |
2003-03-08 | *** empty log message *** | Jim Meyering | |
2003-03-08 | . | Jim Meyering | |
2003-03-07 | . | Jim Meyering | |
2003-03-07 | (print_it): Use putchar, not fputs, to output a single character. | Jim Meyering | |
2003-03-07 | (dired_dump_obstack): Use putchar, not fputs, to output a single character. | Jim Meyering | |
2003-03-07 | (usage): Use putchar, not fputs, to output a single character. | Jim Meyering | |
2003-03-07 | (output_one_tex_line, output_one_dumb_line): | Jim Meyering | |
Use putchar, not fputs, to output a single character. | |||
2003-03-07 | Remove everything associated with mmap-stack.c. | Jim Meyering | |
This reverts the two changes of 2003-02-21. | |||
2003-03-07 | Remove everything associated with mmap-stack.c. | Jim Meyering | |
This reverts the change of 2003-02-19. | |||
2003-03-05 | (print_esc): Remove pointless comparison of unsigned | Jim Meyering | |
integer with zero, to avoid a warning from Intel's ecc. | |||
2003-03-05 | (process_file): Sizes must all be of type uintmax_t. | Jim Meyering | |
Otherwise, for files or totals that are too big, numbers would be truncated. Patch mostly by Michael Stone. | |||
2003-03-04 | (MAX_N_DESCRIPTORS): Use 3 * UTILS_OPEN_MAX / 4. | Jim Meyering | |
2003-03-04 | (usage): Capitalize consistently. | Jim Meyering | |
2003-03-04 | (AD_pop_and_chdir): Call error here, now that restore_cwd no longer does it. | Jim Meyering | |
2003-03-04 | (find_mount_point): Call error here, now that restore_cwd no longer does it. | Jim Meyering | |
2003-03-03 | (remove_cwd_entries): Include the full filename of | Jim Meyering | |
the offending file, not just the basename. | |||
2003-03-03 | (remove_cwd_entries) [!ROOT_CAN_UNLINK_DIRS]: Give an | Jim Meyering | |
accurate diagnostic when failing to remove a file owned by some other user. Reported by Ivo Timmermans via Michael Stone. This fixes Debian bug# 178471. | |||
2003-03-02 | (copy_internal) [un_backup]: When recovering from a | Jim Meyering | |
failure to create a hard link, do not remove the entry associating the source dev/ino with the destination file name. | |||
2003-03-01 | (print_header): Don't embed spaces in a separate `Type' | Jim Meyering | |
header string. Instead, put `Filesystem' and `Type' headers in the same string, so translators can use horizontal space as needed. | |||
2003-02-28 | (copy_internal): When link fails because of an | Jim Meyering | |
existing destination file, unlink that file and try again. | |||
2003-02-21 | . | Jim Meyering | |
2003-02-21 | (usage): Tweak wording of %B description. | Jim Meyering | |
2003-02-21 | Include "mmap-stack.h". | Jim Meyering | |
(main): Invoke `run' through a macro that (when possible) runs it with a large, mmap'd stack. | |||
2003-02-21 | New option: --apparent-size. | Jim Meyering | |
(enum) [APPARENT_SIZE_OPTION]: New member. (long_options): Add it. (usage): Describe it. (main): Handle it. ['b']: Set apparent_size. | |||
2003-02-21 | (apparent_size): New global. | Jim Meyering | |
(print_only_size): Reflect the fact that we're printing byte counts, not ST_NBLOCKSIZE-byte-block counts. (print_size): Call print_only_size rather than duplicating its code. (process_file): Accumulate byte counts, rather than block counts. | |||
2003-02-21 | (process_file): Always reset size_to_propagate_to_parent for | Jim Meyering | |
--separate-dirs (-S). | |||
2003-02-20 | (process_file): Reorganize the code to use only | Jim Meyering | |
one `sum' array, and change how -S works back to the way it was before 2003-01-31. Patch by Bruno Haible. | |||
2003-02-20 | (usage) [%b]: Refer to %B. | Jim Meyering | |
2003-02-20 | (print_stat): New format: %B (to print ST_NBLOCKSIZE). | Jim Meyering | |
(usage): Describe it. |