aboutsummaryrefslogtreecommitdiffstats
path: root/shared.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index dd711a8..8e6df31 100644
--- a/shared.c
+++ b/shared.c
@@ -25,6 +25,8 @@ int cgit_cache_dynamic_ttl = 5;
25int cgit_cache_static_ttl = -1; 25int cgit_cache_static_ttl = -1;
26int cgit_cache_max_create_time = 5; 26int cgit_cache_max_create_time = 5;
27 27
28int cgit_max_msg_len = 60;
29
28char *cgit_repo_name = NULL; 30char *cgit_repo_name = NULL;
29char *cgit_repo_desc = NULL; 31char *cgit_repo_desc = NULL;
30char *cgit_repo_owner = NULL; 32char *cgit_repo_owner = NULL;
@@ -70,6 +72,8 @@ void cgit_global_config_cb(const char *name, const char *value)
70 cgit_cache_static_ttl = atoi(value); 72 cgit_cache_static_ttl = atoi(value);
71 else if (!strcmp(name, "cache-dynamic-ttl")) 73 else if (!strcmp(name, "cache-dynamic-ttl"))
72 cgit_cache_dynamic_ttl = atoi(value); 74 cgit_cache_dynamic_ttl = atoi(value);
75 else if (!strcmp(name, "max-message-length"))
76 cgit_max_msg_len = atoi(value);
73} 77}
74 78
75void cgit_repo_config_cb(const char *name, const char *value) 79void cgit_repo_config_cb(const char *name, const char *value)