From: Jim Meyering Date: Fri, 7 May 1999 18:53:01 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: TEXTUTILS-1_22k~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bda57be9045a565cfd55ef3a17630d0d708869bc;p=platform%2Fupstream%2Fcoreutils.git *** empty log message *** --- diff --git a/old/fileutils/ChangeLog b/old/fileutils/ChangeLog index d8ceb5e..0888c93 100644 --- a/old/fileutils/ChangeLog +++ b/old/fileutils/ChangeLog @@ -1,5 +1,25 @@ +1999-05-07 Jim Meyering + + * tests/touch/dir-1: New test. + * tests/touch/Makefile.am (TESTS_ENVIRONMENT): Remove individual + upper-case program names. Add a definition of PATH. + (TESTS): Add dir-1. + + * src/mkdir.c (main): Use better wording in diagnostic: `cannot + create directory' rather than `cannot make directory'. The former + also matches the one in makepath.c. + + * src/dd.c: (apply_translations): Use TOUPPER and TOLOWER, + not toupper and tolower. + 1999-05-05 Jim Meyering + * lib/makepath.c (make_dir): When reporting a mkdir failure and the + target cannot be `stat'ed, use the errno from the failed mkdir call, + not the one from the stat call. Before this change, running + `mkdir -p /no-dir/no-dir' as an unprivileged user would wrongly + elicit `No such file or directory' instead of `Permission denied'. + * lib/strtol.c (TYPE_SIGNED, TYPE_MAXIMUM, TYPE_MINIMUM): Define. (ULONG_LONG_MAX, LONG_LONG_MAX, LONG_LONG_MIN): Define if not defined. Based on a patch from Kaveh Ghazi. @@ -29,9 +49,9 @@ 1999-04-30 Jim Meyering - * src/touch.c (usage): Mention --no-create. - Only do the fstat if we need to. - On directories, resort to doing a stat, but only when necessary. + * src/touch.c (touch): Only do the fstat if we need to. + Resort to calling stat for directories, but only when necessary. + (usage): Mention --no-create. * src/copy.c (copy_internal): Move the one-file-system test so that it follows the `if (new_dst || !S_ISDIR (dst_sb.st_mode))' block.