commit 31e023dcb496f814136ae36eac51ecd36133e95a
Author: Hiltjo Posthuma <hil...@codemadness.org>
Date:   Sat Feb 15 14:31:14 2014 +0100

    http status moved permanently is code 301
    
    Signed-off-by: Hiltjo Posthuma <hil...@codemadness.org>

diff --git a/quark.c b/quark.c
index 234f6e2..152476a 100644
--- a/quark.c
+++ b/quark.c
@@ -53,7 +53,7 @@ typedef struct {
 } RequestHandler;
 
 static const char HttpOk[]           = "200 OK";
-static const char HttpMoved[]        = "302 Moved Permanently";
+static const char HttpMoved[]        = "301 Moved Permanently";
 static const char HttpUnauthorized[] = "401 Unauthorized";
 static const char HttpNotFound[]     = "404 Not Found";
 static const char texthtml[]         = "text/html";


Reply via email to