aboutsummaryrefslogtreecommitdiffstats
path: root/ui-repolist.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2012-10-16 23:32:40 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2012-10-16 23:32:53 +0200
commitfdfb6a6d802d6b91061296eda9848d5819760d01 (patch)
treea0da4493009a4db6339f72e9d397f7bd2f81b8ad /ui-repolist.c
parentrepo_config: do not let globals override repo settings (diff)
downloadcgit-fdfb6a6d802d6b91061296eda9848d5819760d01.tar.xz
cgit-fdfb6a6d802d6b91061296eda9848d5819760d01.zip
ui-repolist: Rename section-sort to repository-sort.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui-repolist.c')
-rw-r--r--ui-repolist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-repolist.c b/ui-repolist.c
index 7e7f1fb..c774632 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -160,7 +160,7 @@ static int sort_section(const void *a, const void *b)
result = cmp(r1->section, r2->section);
if (!result) {
- if (!strcmp(ctx.cfg.section_sort, "age")) {
+ if (!strcmp(ctx.cfg.repository_sort, "age")) {
// get_repo_modtime caches the value in r->mtime, so we don't
// have to worry about inefficiencies here.
if (get_repo_modtime(r1, &t) && get_repo_modtime(r2, &t))