From f86b44a325a626b8bbd6544cd06289b100920a8f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Thu, 17 Mar 2016 11:55:00 -0400 Subject: [PATCH] lib/nitcorn: fix last references to unitcorn MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/nitcorn/http_response.nit | 2 +- lib/nitcorn/sessions.nit | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/nitcorn/http_response.nit b/lib/nitcorn/http_response.nit index 1690864..3d0fd33 100644 --- a/lib/nitcorn/http_response.nit +++ b/lib/nitcorn/http_response.nit @@ -70,7 +70,7 @@ class HttpResponse end # Set server ID - if not header.keys.has("Server") then header["Server"] = "unitcorn" + if not header.keys.has("Server") then header["Server"] = "nitcorn" end # Get this reponse as a string according to HTTP protocol diff --git a/lib/nitcorn/sessions.nit b/lib/nitcorn/sessions.nit index 8ae26ac..15fa9cc 100644 --- a/lib/nitcorn/sessions.nit +++ b/lib/nitcorn/sessions.nit @@ -62,7 +62,7 @@ redef class Sys private var next_session_id_cache: nullable Int = null # Salt used to hash the session id - protected var session_salt = "Default unitcorn session salt" + protected var session_salt = "Default nitcorn session salt" end redef class Int -- 1.7.9.5