From 5c34d96f7e000eb47418ac9e39dabf92b767c9f2 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Tue, 08 Dec 2009 17:30:02 +0000 Subject: Merge branch 'stable' --- (limited to 'cgit.c') diff --git a/cgit.c b/cgit.c index a17f40d..bfde9f9 100644 --- a/cgit.c +++ b/cgit.c @@ -68,9 +68,9 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value) repo->section = xstrdup(value); else if (!strcmp(name, "readme") && value != NULL) { if (*value == '/') - ctx.repo->readme = xstrdup(value); + repo->readme = xstrdup(value); else - ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); + repo->readme = xstrdup(fmt("%s/%s", repo->path, value)); } else if (ctx.cfg.enable_filter_overrides) { if (!strcmp(name, "about-filter")) repo->about_filter = new_filter(value, 0); -- cgit v0.9.0.2