diff options
author | Lars Hjemli <hjemli@gmail.com> | 2009-09-13 22:02:07 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-09-13 22:02:07 +0200 |
commit | 92f6940975f6771f3a08d497c02575ee5bdc79da (patch) | |
tree | c1c538b24e50be3bf63356acf246cda76b91c519 /shared.c | |
parent | 5f12e45fe3338095916a444ff106dd9fc9991d84 (diff) | |
parent | ee554849ac7209fa8f7486327ec9f3b370e4c876 (diff) |
Merge branch 'lh/repo-scan'
Diffstat (limited to 'shared.c')
-rw-r--r-- | shared.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -48,12 +48,13 @@ struct cgit_repo *cgit_add_repo(const char *url) } ret = &cgit_repolist.repos[cgit_repolist.count-1]; + memset(ret, 0, sizeof(struct cgit_repo)); ret->url = trim_end(url, '/'); ret->name = ret->url; ret->path = NULL; ret->desc = "[no description]"; ret->owner = NULL; - ret->group = ctx.cfg.repo_group; + ret->section = ctx.cfg.section; ret->defbranch = "master"; ret->snapshots = ctx.cfg.snapshots; ret->enable_log_filecount = ctx.cfg.enable_log_filecount; |