diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2017-08-31 15:16:18 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2017-08-31 15:16:18 +0300 |
commit | f27ed60a094483100b698e19c56ccfef26679041 (patch) | |
tree | 56e49d0b9f6b04d12b105cb7be993c1befd717c0 | |
parent | 738ca54ded5493456de8bc65bef61059a65c8413 (diff) | |
download | unit-f27ed60a094483100b698e19c56ccfef26679041.tar.gz unit-f27ed60a094483100b698e19c56ccfef26679041.tar.bz2 |
PHP SAPI: typo fixed.
-rw-r--r-- | src/nxt_php_sapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_php_sapi.c b/src/nxt_php_sapi.c index cb2f6458..83d5e989 100644 --- a/src/nxt_php_sapi.c +++ b/src/nxt_php_sapi.c @@ -503,7 +503,7 @@ nxt_php_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC) "\r\n"; static const u_char default_headers[] - - "Server: unit/" NXT_VERSION "\r\n" + = "Server: unit/" NXT_VERSION "\r\n" "Connection: close\r\n"; static const u_char http_11[] = "HTTP/1.1 "; |