Unidiff1 files changed, 3 insertions, 0 deletions
|
diff --git a/shared.c b/shared.c index 4fab1c9..50fe8e1 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -19,4 +19,5 @@ char *cgit_css = "/cgit.css"; |
19 | char *cgit_logo = "/git-logo.png"; |
19 | char *cgit_logo = "/git-logo.png"; |
20 | char *cgit_index_header = NULL; |
20 | char *cgit_index_header = NULL; |
| |
21 | char *cgit_index_info = NULL; |
21 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
22 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
22 | char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; |
23 | char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; |
@@ -151,4 +152,6 @@ void cgit_global_config_cb(const char *name, const char *value) |
151 | else if (!strcmp(name, "index-header")) |
152 | else if (!strcmp(name, "index-header")) |
152 | cgit_index_header = xstrdup(value); |
153 | cgit_index_header = xstrdup(value); |
| |
154 | else if (!strcmp(name, "index-info")) |
| |
155 | cgit_index_info = xstrdup(value); |
153 | else if (!strcmp(name, "logo-link")) |
156 | else if (!strcmp(name, "logo-link")) |
154 | cgit_logo_link = xstrdup(value); |
157 | cgit_logo_link = xstrdup(value); |
|