diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-24 17:29:43 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-24 17:29:43 +0300 |
commit | 6ef9fb7d97394cd9b418072958a165262507170e (patch) | |
tree | c576ab4c1b1a94031bd8e02c67cf45cec9c1d2b2 /src | |
parent | 6e444a795968825fcceb426168b14e452bfd8259 (diff) | |
download | unit-6ef9fb7d97394cd9b418072958a165262507170e.tar.gz unit-6ef9fb7d97394cd9b418072958a165262507170e.tar.bz2 |
Renamed command line option --no-daemonize to --no-daemon.
Diffstat (limited to 'src')
-rw-r--r-- | src/nxt_runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_runtime.c b/src/nxt_runtime.c index 5e67ecfd..b4e30863 100644 --- a/src/nxt_runtime.c +++ b/src/nxt_runtime.c @@ -919,7 +919,7 @@ nxt_runtime_conf_read_cmd(nxt_task_t *task, nxt_runtime_t *rt) continue; } - if (nxt_strcmp(p, "--no-daemonize") == 0) { + if (nxt_strcmp(p, "--no-daemon") == 0) { rt->daemon = 0; continue; } |