]> gitweb.ps.run Git - ps-cgit/blobdiff - scan-tree.c
Makefile: re-use Git's Makefile where possible
[ps-cgit] / scan-tree.c
index 6ce80365c5443af1eb954dc336381f0b6afce98f..10d90f49a5debc4361162b2b873dfd645bc13d6f 100644 (file)
@@ -106,7 +106,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 +185,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 +222,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",