summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-02-08 16:50:00 +0000
committerJim Meyering <jim@meyering.net>2003-02-08 16:50:00 +0000
commit712c6ceded12d6a22e15784507b2ef89f1b27c5f (patch)
tree64aea125b328e50cdbd0385f539202c84ea0ece7
parent7e82ca89270d4db7e5f69a0dd991131d77a3b994 (diff)
downloadcoreutils-712c6ceded12d6a22e15784507b2ef89f1b27c5f.tar.xz
Correct now-invalid comment about cycle-detection.
-rw-r--r--src/rm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rm.c b/src/rm.c
index f4c75ab8c..737bce167 100644
--- a/src/rm.c
+++ b/src/rm.c
@@ -1,5 +1,5 @@
/* `rm' file deletion utility for GNU.
- Copyright (C) 88, 90, 91, 1994-2002 Free Software Foundation, Inc.
+ Copyright (C) 88, 90, 91, 1994-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -31,8 +31,7 @@
It does this by using chdir to change to each directory in turn before
removing the entries in that directory.
- RM detects directory cycles by maintaining a table of the currently
- active directories. See the description of active_dir_map in remove.c.
+ RM detects directory cycles lazily. See lib/cycle-check.c.
RM is careful to avoid forming full file names whenever possible.
A full file name is formed only when it is about to be used -- e.g.