diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-14 08:55:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-14 08:55:37 +0000 |
commit | cb7512d04d21a2251008f86d2f5e66ae59c79d79 (patch) | |
tree | 76d0fc72a6b5f5578f4b54f3e36da67717b11dd5 | |
parent | cb3b87f4d700420f85f3a8d3f6d44e35a6456dfe (diff) | |
download | coreutils-cb7512d04d21a2251008f86d2f5e66ae59c79d79.tar.xz |
clarify comment
-rw-r--r-- | lib/mkdir-p.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/mkdir-p.c b/lib/mkdir-p.c index 39e563058..acda6b2f3 100644 --- a/lib/mkdir-p.c +++ b/lib/mkdir-p.c @@ -149,8 +149,9 @@ make_dir (char const *dir, char const *fulldir, mode_t mode, has changed the current working directory and is unable to restore it to its initial state. - Return true iff ARG exists as a directory with the proper - ownership and permissions when done. */ + Return true iff ARG exists as a directory with the proper ownership + and permissions when done. Note that this function returns true + even when it fails to return to the initial working directory. */ bool make_dir_parents (char const *arg, |