lib/nitcorn: fix last references to unitcorn
authorAlexis Laferrière <alexis.laf@xymus.net>
Thu, 17 Mar 2016 15:55:00 +0000 (11:55 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Mon, 21 Mar 2016 16:11:04 +0000 (12:11 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/nitcorn/http_response.nit
lib/nitcorn/sessions.nit

index 1690864..3d0fd33 100644 (file)
@@ -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
index 8ae26ac..15fa9cc 100644 (file)
@@ -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