summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_php_sapi.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2017-02-01 15:07:23 +0300
committerIgor Sysoev <igor@sysoev.ru>2017-02-01 15:07:23 +0300
commit8942550b13515e54aff9d682bec3da45ade26e18 (patch)
tree17e36260cfc5519d2aaa89dbffc7bcbd63687f9d /src/nxt_php_sapi.c
parentd4d36c65fa14dabeb029b3e6157d85672ac176ad (diff)
downloadunit-8942550b13515e54aff9d682bec3da45ade26e18.tar.gz
unit-8942550b13515e54aff9d682bec3da45ade26e18.tar.bz2
More refactoring relicts removed.
Diffstat (limited to '')
-rw-r--r--src/nxt_php_sapi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nxt_php_sapi.c b/src/nxt_php_sapi.c
index aadd5648..664ae88e 100644
--- a/src/nxt_php_sapi.c
+++ b/src/nxt_php_sapi.c
@@ -63,7 +63,7 @@ static int nxt_php_read_post(char *buffer, uint count_bytes TSRMLS_DC);
static sapi_module_struct nxt_php_sapi_module =
{
(char *) "cli-server",
- (char *) "nginman",
+ (char *) "nginext",
nxt_php_startup, /* startup */
php_module_shutdown_wrapper, /* shutdown */
@@ -351,13 +351,13 @@ nxt_php_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC)
static const u_char default_repsonse[]
= "HTTP/1.1 200 OK\r\n"
- "Server: nginman/0.1\r\n"
+ "Server: nginext/0.1\r\n"
"Content-Type: text/html; charset=UTF-8\r\n"
"Connection: close\r\n"
"\r\n";
static const u_char default_headers[]
- = "Server: nginman/0.1\r\n"
+ = "Server: nginext/0.1\r\n"
"Connection: close\r\n";
r = SG(server_context);