diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-31 00:42:16 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-31 00:42:16 +0300 |
commit | f0e9e3ace94c82fab78ab1d4ee8c3042f3e94fdf (patch) | |
tree | 74fab38d3799598febc98aaabb0f5902d7dc5a0e /src/nxt_runtime.c | |
parent | 61606835448554a7ee9a4431d732e1f2a9318376 (diff) | |
download | unit-f0e9e3ace94c82fab78ab1d4ee8c3042f3e94fdf.tar.gz unit-f0e9e3ace94c82fab78ab1d4ee8c3042f3e94fdf.tar.bz2 |
nginext has been renamed to unit.
Diffstat (limited to 'src/nxt_runtime.c')
-rw-r--r-- | src/nxt_runtime.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nxt_runtime.c b/src/nxt_runtime.c index cdaa72b6..d9dfa3a5 100644 --- a/src/nxt_runtime.c +++ b/src/nxt_runtime.c @@ -763,7 +763,7 @@ nxt_runtime_conf_init(nxt_task_t *task, nxt_runtime_t *rt) slash = "/"; } - ret = nxt_file_name_create(rt->mem_pool, &file_name, "%s%snginext.*%Z", + ret = nxt_file_name_create(rt->mem_pool, &file_name, "%s%sunit.*%Z", rt->modules, slash); if (nxt_slow_path(ret != NXT_OK)) { return NXT_ERROR; @@ -797,7 +797,7 @@ nxt_runtime_conf_read_cmd(nxt_task_t *task, nxt_runtime_t *rt) u_char buf[1024]; static const char version[] = - "nginext version: " NXT_VERSION "\n" + "unit version: " NXT_VERSION "\n" "configured as ./configure" NXT_CONFIGURE_OPTIONS "\n"; static const char no_control[] = @@ -811,11 +811,11 @@ nxt_runtime_conf_read_cmd(nxt_task_t *task, nxt_runtime_t *rt) static const char help[] = "\n" - "nginext options:\n" + "unit options:\n" "\n" - " --version print nginext version and configure options\n" + " --version print unit version and configure options\n" "\n" - " --no-daemon run nginext in non-daemon mode\n" + " --no-daemon run unit in non-daemon mode\n" "\n" " --control ADDRESS set address of control API socket\n" " default: \"" NXT_CONTROL_SOCK "\"\n" |