summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nxt_controller.c4
-rw-r--r--src/nxt_http_request.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/nxt_controller.c b/src/nxt_controller.c
index 6c477157..d89c8dbc 100644
--- a/src/nxt_controller.c
+++ b/src/nxt_controller.c
@@ -1215,7 +1215,7 @@ nxt_controller_response(nxt_task_t *task, nxt_controller_request_t *req,
body->mem.free = nxt_cpymem(body->mem.free, "\r\n", 2);
size = sizeof("HTTP/1.1 " "\r\n") - 1 + status_line.length
- + sizeof("Server: unit/" NXT_VERSION "\r\n") - 1
+ + sizeof("Server: Unit/" NXT_VERSION "\r\n") - 1
+ sizeof("Date: Wed, 31 Dec 1986 16:40:00 GMT\r\n") - 1
+ sizeof("Content-Type: application/json\r\n") - 1
+ sizeof("Content-Length: " "\r\n") - 1 + NXT_SIZE_T_LEN
@@ -1237,7 +1237,7 @@ nxt_controller_response(nxt_task_t *task, nxt_controller_request_t *req,
status_line.length);
nxt_str_set(&str, "\r\n"
- "Server: unit/" NXT_VERSION "\r\n"
+ "Server: Unit/" NXT_VERSION "\r\n"
"Date: ");
b->mem.free = nxt_cpymem(b->mem.free, str.start, str.length);
diff --git a/src/nxt_http_request.c b/src/nxt_http_request.c
index 0fbcdbbc..40cbaf40 100644
--- a/src/nxt_http_request.c
+++ b/src/nxt_http_request.c
@@ -282,7 +282,7 @@ nxt_http_request_header_send(nxt_task_t *task, nxt_http_request_t *r)
goto fail;
}
- nxt_http_field_set(server, "Server", "unit/" NXT_VERSION);
+ nxt_http_field_set(server, "Server", "Unit/" NXT_VERSION);
if (r->resp.date == NULL) {
date = nxt_list_zero_add(r->resp.fields);