diff options
author | Dmitry Volyntsev <xeioex@nginx.com> | 2018-05-03 18:29:26 +0300 |
---|---|---|
committer | Dmitry Volyntsev <xeioex@nginx.com> | 2018-05-03 18:29:26 +0300 |
commit | 28dd204a89c3ee2b094698e54e5f92d603af3b64 (patch) | |
tree | 3a4dba202456d8c9951a61b97fcd5b51cdfc0094 /nginx/ngx_http_js_module.c | |
parent | cd60036918646f0b92d556e3378d617e2e4cf9d4 (diff) | |
download | njs-28dd204a89c3ee2b094698e54e5f92d603af3b64.tar.gz njs-28dd204a89c3ee2b094698e54e5f92d603af3b64.zip |
Renamed njscript to njs.
njscript.c -> njs.c
njscript.h -> njs.h
njs.c -> njs_shell.c
Diffstat (limited to 'nginx/ngx_http_js_module.c')
-rw-r--r-- | nginx/ngx_http_js_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nginx/ngx_http_js_module.c b/nginx/ngx_http_js_module.c index 3dc12d46..5a5cb68f 100644 --- a/nginx/ngx_http_js_module.c +++ b/nginx/ngx_http_js_module.c @@ -9,7 +9,7 @@ #include <ngx_core.h> #include <ngx_http.h> -#include <njscript.h> +#include <njs.h> typedef struct { |