From: Alexis Laferrière Date: Thu, 17 Mar 2016 15:55:00 +0000 (-0400) Subject: lib/nitcorn: fix last references to unitcorn X-Git-Url: http://nitlanguage.org lib/nitcorn: fix last references to unitcorn Signed-off-by: Alexis Laferrière --- 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