X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/521e10c884055c800078e6dada97ccf6c5193aad..8f208794318f83826e98168b8b430f2d9a68bcce:/scan-tree.c diff --git a/scan-tree.c b/scan-tree.c index 6ce8036..0d3e0ad 100644 --- a/scan-tree.c +++ b/scan-tree.c @@ -8,6 +8,7 @@ */ #include "cgit.h" +#include "scan-tree.h" #include "configfile.h" #include "html.h" @@ -106,7 +107,7 @@ static void add_repo(const char *base, const char *path, repo_config_fn fn) config_fn = fn; if (ctx.cfg.enable_git_config) git_config_from_file(gitconfig_config, fmt("%s/config", path), NULL); - + if (ctx.cfg.remove_suffix) if ((p = strrchr(repo->url, '.')) && !strcmp(p, ".git")) *p = '\0'; @@ -185,7 +186,7 @@ static void scan_path(const char *base, const char *path, repo_config_fn fn) add_repo(base, fmt("%s/.git", path), fn); goto end; } - while((ent = readdir(dir)) != NULL) { + while ((ent = readdir(dir)) != NULL) { if (ent->d_name[0] == '.') { if (ent->d_name[1] == '\0') continue; @@ -222,7 +223,7 @@ void scan_projects(const char *path, const char *projectsfile, repo_config_fn fn char line[MAX_PATH * 2], *z; FILE *projects; int err; - + projects = fopen(projectsfile, "r"); if (!projects) { fprintf(stderr, "Error opening projectsfile %s: %s (%d)\n",