From 9e3247465a6a246f4de17b0337ef1578e1c6e2be Mon Sep 17 00:00:00 2001 From: Joe Date: Wed, 10 Jan 2024 20:20:20 +0100 Subject: sick --- c_ldirs.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'c_ldirs.go') diff --git a/c_ldirs.go b/c_ldirs.go index 96381fd..906e368 100644 --- a/c_ldirs.go +++ b/c_ldirs.go @@ -120,12 +120,16 @@ func (dir *DirsNode) count_hosts() int { } // return the number of hosts and subfolders of the dir -func (dir *DirsNode) count_elements() int { +func (dir *DirsNode) count_elements(skip_folds bool) int { items := 0 items += dir.count_hosts() for ptr := dir.next; ptr != nil && ptr.Depth > dir.Depth; ptr = ptr.next { - items += ptr.count_hosts() + 1 + if skip_folds == true && ptr.Folded == true { + items += 1 + } else { + items += ptr.count_hosts() + 1 + } } return items } -- cgit v1.2.3