diff options
author | Lars Hjemli | 2011-06-13 23:05:10 +0000 |
---|---|---|
committer | Lars Hjemli | 2011-06-13 23:05:10 +0000 |
commit | 1b1bf635b59a349a9238a1d63a21d03d9949e185 (patch) | |
tree | 78d1501781d72f0698f673e9c44450e32118d843 /cgit.c | |
parent | b88cda6e5b4472fc1bb0ae00d9fb974ec4f61d7a (diff) | |
parent | a1429dbc89f9c0945e32cea9fd3424d2fe56aeab (diff) | |
download | cgit-1b1bf635b59a349a9238a1d63a21d03d9949e185.tar.gz cgit-1b1bf635b59a349a9238a1d63a21d03d9949e185.tar.bz2 cgit-1b1bf635b59a349a9238a1d63a21d03d9949e185.zip |
Merge branch 'lh/clone-url'
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -244,6 +244,8 @@ void config_cb(const char *name, const char *value) | |||
244 | ctx.cfg.robots = xstrdup(value); | 244 | ctx.cfg.robots = xstrdup(value); |
245 | else if (!strcmp(name, "clone-prefix")) | 245 | else if (!strcmp(name, "clone-prefix")) |
246 | ctx.cfg.clone_prefix = xstrdup(value); | 246 | ctx.cfg.clone_prefix = xstrdup(value); |
247 | else if (!strcmp(name, "clone-url")) | ||
248 | ctx.cfg.clone_url = xstrdup(value); | ||
247 | else if (!strcmp(name, "local-time")) | 249 | else if (!strcmp(name, "local-time")) |
248 | ctx.cfg.local_time = atoi(value); | 250 | ctx.cfg.local_time = atoi(value); |
249 | else if (!prefixcmp(name, "mimetype.")) | 251 | else if (!prefixcmp(name, "mimetype.")) |
@@ -463,6 +465,7 @@ static int prepare_repo_cmd(struct cgit_context *ctx) | |||
463 | cgit_print_docend(); | 465 | cgit_print_docend(); |
464 | return 1; | 466 | return 1; |
465 | } | 467 | } |
468 | cgit_prepare_repo_env(ctx->repo); | ||
466 | return 0; | 469 | return 0; |
467 | } | 470 | } |
468 | 471 | ||