summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h1
-rw-r--r--shared.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index dd83f70..b8af970 100644
--- a/cgit.h
+++ b/cgit.h
@@ -126,2 +126,3 @@ extern char *cgit_logo;
extern char *cgit_index_header;
+extern char *cgit_index_info;
extern char *cgit_logo_link;
diff --git a/shared.c b/shared.c
index 4fab1c9..50fe8e1 100644
--- a/shared.c
+++ b/shared.c
@@ -20,2 +20,3 @@ char *cgit_logo = "/git-logo.png";
char *cgit_index_header = NULL;
+char *cgit_index_info = NULL;
char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/";
@@ -152,2 +153,4 @@ void cgit_global_config_cb(const char *name, const char *value)
cgit_index_header = xstrdup(value);
+ else if (!strcmp(name, "index-info"))
+ cgit_index_info = xstrdup(value);
else if (!strcmp(name, "logo-link"))