diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-02-01 15:07:23 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-02-01 15:07:23 +0300 |
commit | 8942550b13515e54aff9d682bec3da45ade26e18 (patch) | |
tree | 17e36260cfc5519d2aaa89dbffc7bcbd63687f9d /src/nxt_php_sapi.c | |
parent | d4d36c65fa14dabeb029b3e6157d85672ac176ad (diff) | |
download | unit-8942550b13515e54aff9d682bec3da45ade26e18.tar.gz unit-8942550b13515e54aff9d682bec3da45ade26e18.tar.bz2 |
More refactoring relicts removed.
Diffstat (limited to 'src/nxt_php_sapi.c')
-rw-r--r-- | src/nxt_php_sapi.c | 6 |
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); |