From 827c442ab3586e6019b97714ca0b925a4625a361 Mon Sep 17 00:00:00 2001 From: the little girl Date: Fri, 21 Feb 2014 14:59:05 +0100 Subject: ikke lenger hardkode home --- config.def.h | 3 ++- wiki.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index ea4a312..f2c5857 100644 --- a/config.def.h +++ b/config.def.h @@ -1,12 +1,13 @@ static char *title = "a wiki"; static char *id = "anonymous"; +static char *home = "home"; static char *loft = ".loft"; static char *links[][2] = { { "home", "home" }, { "planer", "planer" }, - 0 + { 0 } }; static char *(*authenticate)() = NULL; diff --git a/wiki.c b/wiki.c index 53fed93..d8fd11c 100644 --- a/wiki.c +++ b/wiki.c @@ -270,7 +270,7 @@ int main(int argc, char **argv) { if(!base) base = strdup(dirname(strdup(script))); if(authenticate && !(id = authenticate())) return unauthorized(401); - if(!legit(page++)) return redirect("hei"); + if(!legit(page++)) return redirect(home); setenv("MARXUP_HEADER", "2", 1); setenv("MARXUP_PREFIX", base, 1); -- cgit v1.0