Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-06-23 | (backup_args): Change a `0' to NULL. | Jim Meyering | |
2005-06-22 | mktime fix to avoid a diagnostic. | Paul Eggert | |
2005-06-22 | Include <string.h> even if !DEBUG. (From glibc.) | Paul Eggert | |
(ranged_convert): Don't save conversion in a temporary struct. This causes a warning with GCC 4.0.0, and anyway in the typical case it's not worth the extra 100 bytes or so of code. (ranged_convert, __mktime_internal): When calling a function via a pointer P, use P () rather than (*P) (), as we now assume C89 or better. | |||
2005-06-22 | (desirable_utmp_entry): Fix bug where "who -b" and "who -r" | Paul Eggert | |
failed to give output. | |||
2005-06-22 | New file umask-check to test for umask problems during tests. | Paul Eggert | |
2005-06-22 | Use umask-check instead of chmod. | Paul Eggert | |
2005-06-22 | Use umask-check. | Paul Eggert | |
2005-06-22 | (EXTRA_DIST): Add umask-check. | Paul Eggert | |
2005-06-22 | Initial revision. | Paul Eggert | |
2005-06-22 | *** empty log message *** | Jim Meyering | |
2005-06-22 | *** empty log message *** | Jim Meyering | |
2005-06-22 | *** empty log message *** | Jim Meyering | |
2005-06-22 | Include "quotearg.h", not "quote.h". | Jim Meyering | |
(remove_parents, main): Use quotearg_colon, not quote. | |||
2005-06-22 | From gnulib: | Jim Meyering | |
(HAVE_GNU_CALLOC): New constant. (xcalloc): Use it to avoid needless tests. | |||
2005-06-22 | *** empty log message *** | Jim Meyering | |
2005-06-22 | * tests/cp/cp-parents: Use chmod to work around some hosts with | Paul Eggert | |
ACL problems. | |||
2005-06-21 | *** empty log message *** | Jim Meyering | |
2005-06-21 | *** empty log message *** | Jim Meyering | |
2005-06-21 | *** empty log message *** | Jim Meyering | |
2005-06-21 | Use --apparent-size to avoid the vagaries | Jim Meyering | |
of counting blocks. Kevin Mudrick reported that this test would fail on an nfs-mounted directory where attribute-caching is turned on. | |||
2005-06-20 | . | Jim Meyering | |
2005-06-19 | Allow the two existing types of uses of PATH: | Jim Meyering | |
@vindex PATH @env{PATH} | |||
2005-06-19 | *** empty log message *** | Jim Meyering | |
2005-06-19 | (ln invocation): Change a few `paths' to `file names'. | Jim Meyering | |
2005-06-19 | *** empty log message *** | Jim Meyering | |
2005-06-19 | Also catch uses of path, pathname. | Jim Meyering | |
2005-06-19 | (tac_mem, tac_stdin_to_mem): Remove #if-0'd functions. | Jim Meyering | |
2005-06-19 | *** empty log message *** | Jim Meyering | |
2005-06-19 | *** empty log message *** | Jim Meyering | |
2005-06-19 | (usage): Use `file system', not `filesystem'. | Jim Meyering | |
2005-06-19 | use `file system', not `filesystem' | Jim Meyering | |
2005-06-19 | *** empty log message *** | Jim Meyering | |
2005-06-19 | (gl_XGETCWD): Add `AC_LIBOBJ([xgetcwd])'. | Jim Meyering | |
Register xgetcwd.c and xgetcwd.h via AC_LIBSOURCES. | |||
2005-06-19 | rename to gl_FUNC_XFTS | Jim Meyering | |
2005-06-19 | Require gl_FUNC_XFTS. | Jim Meyering | |
2005-06-19 | (gl_XFTS): New file/macro. | Jim Meyering | |
2005-06-19 | (libcoreutils_a_SOURCES): Remove xgetcwd.c, xgetcwd.h, xfts.c and xfts.h. | Jim Meyering | |
2005-06-18 | *** empty log message *** | Jim Meyering | |
2005-06-18 | (unquote): Remove unnecessary `' quotes from a diagnostic. | Jim Meyering | |
2005-06-17 | Don't embed `this'-style quotes in format strings. | Jim Meyering | |
Rather than this: error (..., "...`%s'...", arg); do this: error (..., "...%s...", quote (arg)); | |||
2005-06-17 | *** empty log message *** | Jim Meyering | |
2005-06-17 | (usage): Clarify that shred works on an ext3 file | Jim Meyering | |
system as long as it's not in data=journal mode. Tiny change by Mark Melahn. | |||
2005-06-17 | *** empty log message *** | Jim Meyering | |
2005-06-17 | (shred invocation): Clarify that shred | Jim Meyering | |
works on ext3 as long as it's not in data=journal mode. Patch from Mark Melahn. | |||
2005-06-17 | *** empty log message *** | Jim Meyering | |
2005-06-16 | * src/hostid.c (main): Don't print fewer than 8 digits, or spurious leading "f". | Paul Eggert | |
2005-06-16 | *** empty log message *** | Jim Meyering | |
2005-06-16 | *** empty log message *** | Jim Meyering | |
2005-06-16 | Don't embed `this'-style quotes in format strings. | Jim Meyering | |
Include "quote.h". Rather than this: error (..., "...`%s'...", arg); do this: error (..., "...%s...", quote (arg)); | |||
2005-06-16 | whoops: Adding quote(...) isn't enough :) | Jim Meyering | |
remove quotes from the string, too. |