Browse Source

src/filemanager/file.c: fix comment.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Andrew Borodin 11 months ago
parent
commit
1dc0b325dc
1 changed files with 2 additions and 8 deletions
  1. 2 8
      src/filemanager/file.c

+ 2 - 8
src/filemanager/file.c

@@ -188,14 +188,8 @@ static GSList *linklist = NULL;
 static GQueue *erase_list = NULL;
 
 /*
- * In copy_dir_dir we use two additional single linked lists: The first -
- * variable name 'parent_dirs' - holds information about already copied
- * directories and is used to detect cyclic symbolic links.
- * The second ('dest_dirs' below) holds information about just created
- * target directories and is used to detect when an directory is copied
- * into itself (we don't want to copy infinitely).
- * Both lists don't use the linkcount and name structure members of struct
- * link_t.
+ * This list holds information about just created target directories and is used to detect
+ * when an directory is copied into itself (we don't want to copy infinitely).
  */
 static GSList *dest_dirs = NULL;