aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgit.h1
-rw-r--r--shared.c3
2 files changed, 0 insertions, 4 deletions
diff --git a/cgit.h b/cgit.h
index b8af970..dd83f70 100644
--- a/cgit.h
+++ b/cgit.h
@@ -124,7 +124,6 @@ extern char *cgit_root_title;
extern char *cgit_css;
extern char *cgit_logo;
extern char *cgit_index_header;
-extern char *cgit_index_info;
extern char *cgit_logo_link;
extern char *cgit_module_link;
extern char *cgit_agefile;
diff --git a/shared.c b/shared.c
index 50fe8e1..4fab1c9 100644
--- a/shared.c
+++ b/shared.c
@@ -18,7 +18,6 @@ char *cgit_root_title = "Git repository browser";
char *cgit_css = "/cgit.css";
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/";
char *cgit_module_link = "./?repo=%s&page=commit&id=%s";
char *cgit_agefile = "info/web/last-modified";
@@ -151,8 +150,6 @@ void cgit_global_config_cb(const char *name, const char *value)
cgit_logo = xstrdup(value);
else if (!strcmp(name, "index-header"))
cgit_index_header = xstrdup(value);
- else if (!strcmp(name, "index-info"))
- cgit_index_info = xstrdup(value);
else if (!strcmp(name, "logo-link"))
cgit_logo_link = xstrdup(value);
else if (!strcmp(name, "module-link"))