about summary refs log tree commit diff stats
path: root/ui-repolist.c
diff options
context:
space:
mode:
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)
160 160
161 result = cmp(r1->section, r2->section); 161 result = cmp(r1->section, r2->section);
162 if (!result) { 162 if (!result) {
163 if (!strcmp(ctx.cfg.section_sort, "age")) { 163 if (!strcmp(ctx.cfg.repository_sort, "age")) {
164 // get_repo_modtime caches the value in r->mtime, so we don't 164 // get_repo_modtime caches the value in r->mtime, so we don't
165 // have to worry about inefficiencies here. 165 // have to worry about inefficiencies here.
166 if (get_repo_modtime(r1, &t) && get_repo_modtime(r2, &t)) 166 if (get_repo_modtime(r1, &t) && get_repo_modtime(r2, &t))