From 1dc0b325dcac34b770290220215f2d3dc1b39392 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Sat, 6 Apr 2024 09:25:00 +0300 Subject: [PATCH] src/filemanager/file.c: fix comment. Signed-off-by: Andrew Borodin --- src/filemanager/file.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/filemanager/file.c b/src/filemanager/file.c index c64dfbb93..e859514a0 100644 --- a/src/filemanager/file.c +++ b/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;