summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-08-12 13:00:57 +0000
committerJim Meyering <jim@meyering.net>2005-08-12 13:00:57 +0000
commit6806c6a8011cf9899e56fd2b8a10794956246036 (patch)
treeec015db709612ab9a56636d667f0d6f1b59788e2 /lib
parentfdaa1ce8492c4c878e5a65fd0925f1c2d3c95d3d (diff)
downloadcoreutils-6806c6a8011cf9899e56fd2b8a10794956246036.tar.xz
(fts_cross_check) [FTS_DEBUG]: s/active_dir_ht/fts_cycle.ht/.
Diffstat (limited to 'lib')
-rw-r--r--lib/fts.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/fts.c b/lib/fts.c
index da0bface4..eb24b9862 100644
--- a/lib/fts.c
+++ b/lib/fts.c
@@ -1023,7 +1023,7 @@ fts_cross_check (FTS const *sp)
struct Active_dir ad;
ad.ino = t->fts_statp->st_ino;
ad.dev = t->fts_statp->st_dev;
- if ( ! hash_lookup (sp->active_dir_ht, &ad))
+ if ( ! hash_lookup (sp->fts_cycle.ht, &ad))
printf ("ERROR: active dir, %s, not in tree\n", t->fts_path);
}
@@ -1034,8 +1034,8 @@ fts_cross_check (FTS const *sp)
|| ent->fts_info == FTS_D))
{
struct Active_dir *ad;
- for (ad = hash_get_first (sp->active_dir_ht); ad != NULL;
- ad = hash_get_next (sp->active_dir_ht, ad))
+ for (ad = hash_get_first (sp->fts_cycle.ht); ad != NULL;
+ ad = hash_get_next (sp->fts_cycle.ht, ad))
{
find_matching_ancestor (ent, ad);
}