diff options
author | Jim Meyering <jim@meyering.net> | 2003-01-07 16:36:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-01-07 16:36:45 +0000 |
commit | d31fd7a77ee2a8d6f951befef1833899f8cf3c89 (patch) | |
tree | 5866b80e05469c4a579e77ff0ec7d893bf9c03cb /src | |
parent | 1ef6e79882ef1a020060b66f85e60fd196932d6f (diff) | |
download | coreutils-d31fd7a77ee2a8d6f951befef1833899f8cf3c89.tar.xz |
tweak comment
Diffstat (limited to 'src')
-rw-r--r-- | src/remove.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/remove.c b/src/remove.c index c4822ea15..2217c5fd2 100644 --- a/src/remove.c +++ b/src/remove.c @@ -1101,8 +1101,9 @@ rm (size_t n_files, char const *const *file, struct rm_options const *x) { enum RM_status s; cycle_check_init (&ds->cycle_check_state); - /* Arrange to fail, give up on this FILE, but continue on with - any other arguments, in case rm_1 detects a directory cycle. */ + /* In the event that rm_1->remove_dir->remove_cwd_entries detects + a directory cycle, arrange to fail, give up on this FILE, but + continue on with any other arguments. */ if (setjmp (ds->current_arg_jumpbuf)) s = RM_ERROR; else |