diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/setup.ecpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/setup.ecpp b/pages/setup.ecpp index 1d832f6..ac9f2c5 100644 --- a/pages/setup.ecpp +++ b/pages/setup.ecpp @@ -162,8 +162,9 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); struct dirent* e; string parent(".."); string current("."); + string cvsDir("CVS"); while ((e = d.Next())) { - if ((current == e->d_name) || (parent == e->d_name)) { + if ((current == e->d_name) || (parent == e->d_name) || (cvsDir == e->d_name)) { continue; } /* Check if entry is a directory: I do not rely on e->d_type |