aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgit.c3
-rw-r--r--ui-stats.c8
-rw-r--r--ui-stats.h1
3 files changed, 0 insertions, 12 deletions
diff --git a/cgit.c b/cgit.c
index 93a7a69..b0e202e 100644
--- a/cgit.c
+++ b/cgit.c
@@ -491,9 +491,6 @@ void print_repo(FILE *f, struct cgit_repo *repo)
fprintf(f, "repo.snapshots=%s\n", tmp);
free(tmp);
}
- if (repo->max_stats != ctx.cfg.max_stats)
- fprintf(f, "repo.max-stats=%s\n",
- cgit_find_stats_periodname(repo->max_stats));
fprintf(f, "\n");
}
diff --git a/ui-stats.c b/ui-stats.c
index bdaf9cc..9fc06d3 100644
--- a/ui-stats.c
+++ b/ui-stats.c
@@ -154,14 +154,6 @@ int cgit_find_stats_period(const char *expr, struct cgit_period **period)
return 0;
}
-const char *cgit_find_stats_periodname(int idx)
-{
- if (idx > 0 && idx < 4)
- return periods[idx - 1].name;
- else
- return "";
-}
-
static void add_commit(struct string_list *authors, struct commit *commit,
struct cgit_period *period)
{
diff --git a/ui-stats.h b/ui-stats.h
index f0761ba..4f13dba 100644
--- a/ui-stats.h
+++ b/ui-stats.h
@@ -21,7 +21,6 @@ struct cgit_period {
};
extern int cgit_find_stats_period(const char *expr, struct cgit_period **period);
-extern const char *cgit_find_stats_periodname(int idx);
extern void cgit_show_stats(struct cgit_context *ctx);