aboutsummaryrefslogtreecommitdiff
path: root/shared.c
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/shared.c b/shared.c
index ae17d78..6e91857 100644
--- a/shared.c
+++ b/shared.c
@@ -75,7 +75,6 @@ struct cgit_repo *cgit_add_repo(const char *url)
ret->owner_filter = ctx.cfg.owner_filter;
ret->clone_url = ctx.cfg.clone_url;
ret->submodules.strdup_strings = 1;
- ret->hide = ret->ignore = 0;
return ret;
}
@@ -86,8 +85,6 @@ struct cgit_repo *cgit_get_repoinfo(const char *url)
for (i = 0; i < cgit_repolist.count; i++) {
repo = &cgit_repolist.repos[i];
- if (repo->ignore)
- continue;
if (!strcmp(repo->url, url))
return repo;
}