diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-01-13 18:34:37 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-01-13 18:34:37 +0100 |
commit | 2122c696a34133a616b9ec6d72abe9eb89e728aa (patch) | |
tree | fc3c4693f77b04c1eaf549841d5bae46d9801608 /shared.c | |
parent | f39c3c99a12154cdafcdc501a821e3fadd3c0602 (diff) | |
parent | b74cc91574a9284d2f6446fd2ef3df6298ed6992 (diff) | |
download | cgit-2122c696a34133a616b9ec6d72abe9eb89e728aa.tar.gz cgit-2122c696a34133a616b9ec6d72abe9eb89e728aa.tar.bz2 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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -118,7 +118,7 @@ struct repoinfo *add_repo(const char *url) ret->url = trim_end(url, '/'); ret->name = ret->url; ret->path = NULL; - ret->desc = NULL; + ret->desc = "[no description]"; ret->owner = NULL; ret->group = cgit_repo_group; ret->defbranch = "master"; |