From b1788b537345bd3742459f9d474d101b686d71d9 Mon Sep 17 00:00:00 2001 From: the little girl Date: Fri, 5 Sep 2014 20:29:48 +0900 Subject: =?UTF-8?q?fikse=20alle=20de=20sm=C3=A5=20tingene?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 +- wiki.c | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a8cd978..0b7ccbf 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: wiki.cgi wiki.cgi: config.h wiki.c - ${CC} -std=c11 -Os -o $@ wiki.c -lmarxup + ${CC} -std=c99 -pedantic -Os -o $@ wiki.c -lmarxup config.h: cp config.def.h $@ diff --git a/wiki.c b/wiki.c index bfb384a..c72b2db 100644 --- a/wiki.c +++ b/wiki.c @@ -92,7 +92,10 @@ int redirect(char *path) { printf("Status: 303\n"); switch(*path) { case '?': printf("Location: %s\n\n", path); break; - // case '#': + case '#': + printf("Location: %s/%s?m=", script, path); + // skrive ut ++path + printf("\n"); default: printf("Location: %s/%s\n\n", script, path); break; } return 0; @@ -134,11 +137,11 @@ int store(char *raw, int len) { char *id = basename(strdup(raw)); if(chdir(dir)) return problem(404, "Not found"); - char path[strlen(id) + strlen(loft) + 256]; + char path[strlen(loft) + strlen(id) + 256]; int epoch = time(NULL); - snprintf(path, strlen(id) + strlen(loft) + 256, "%s/%s.%d", loft, id, epoch); + snprintf(path, strlen(loft) + strlen(id) + 256, "%s/%s.%d", loft, id, epoch); FILE *fp = fopen(path, "w"); - if(!fp) return redirect("#"); + if(!fp) return redirect("FFFF"); int pos = 0; unsigned int decoded; char buffer[3] = { 0 }; -- cgit v1.0