Unidiff1 files changed, 4 insertions, 0 deletions
|
diff --git a/shared.c b/shared.c index 53cd9b0..4ddba61 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -21,2 +21,3 @@ char *cgit_script_name = CGIT_SCRIPT_NAME; |
21 | char *cgit_cache_root = "/var/cache/cgit"; |
21 | char *cgit_cache_root = "/var/cache/cgit"; |
| |
22 | char *cgit_repo_group = NULL; |
22 | |
23 | |
@@ -87,2 +88,3 @@ struct repoinfo *add_repo(const char *url) |
87 | ret->owner = NULL; |
88 | ret->owner = NULL; |
| |
89 | ret->group = cgit_repo_group; |
88 | ret->defbranch = "master"; |
90 | ret->defbranch = "master"; |
@@ -133,2 +135,4 @@ void cgit_global_config_cb(const char *name, const char *value) |
133 | cgit_max_commit_count = atoi(value); |
135 | cgit_max_commit_count = atoi(value); |
| |
136 | else if (!strcmp(name, "repo.group")) |
| |
137 | cgit_repo_group = xstrdup(value); |
134 | else if (!strcmp(name, "repo.url")) |
138 | else if (!strcmp(name, "repo.url")) |
|