about summary refs log tree commit diff stats
path: root/shared.c
diff options
context:
space:
mode:
authorLars Hjemli2008-01-13 18:34:37 +0100
committerLars Hjemli2008-01-13 18:34:37 +0100
commit2122c696a34133a616b9ec6d72abe9eb89e728aa (patch)
treefc3c4693f77b04c1eaf549841d5bae46d9801608 /shared.c
parentCheck for NULL-subject in patch view (diff)
parentCGIT 0.7.2 (diff)
downloadcgit-2122c696a34133a616b9ec6d72abe9eb89e728aa.tar.gz
cgit-2122c696a34133a616b9ec6d72abe9eb89e728aa.zip
Merge branch 'stable'
* stable:
  CGIT 0.7.2
  Use GIT-1.5.3.8
  Compare string lengths when parsing the snapshot mask
  Default repo description to "[no description]"
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared.c b/shared.c index 9c992c8..bf0581f 100644 --- a/shared.c +++ b/shared.c
@@ -118,7 +118,7 @@ struct repoinfo *add_repo(const char *url)
118 ret->url = trim_end(url, '/'); 118 ret->url = trim_end(url, '/');
119 ret->name = ret->url; 119 ret->name = ret->url;
120 ret->path = NULL; 120 ret->path = NULL;
121 ret->desc = NULL; 121 ret->desc = "[no description]";
122 ret->owner = NULL; 122 ret->owner = NULL;
123 ret->group = cgit_repo_group; 123 ret->group = cgit_repo_group;
124 ret->defbranch = "master"; 124 ret->defbranch = "master";