diff options
author | Valentin Bartenev <vbart@nginx.com> | 2020-04-08 15:15:24 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2020-04-08 15:15:24 +0300 |
commit | 555d595f38801685f95f140f85b20f5dcfaa49cd (patch) | |
tree | bd0e17520d0ed6d3cb1a40195181949bd5464619 /src/nxt_controller.c | |
parent | 27c1e268563da002e57f34032499efd7543b8b9d (diff) | |
download | unit-555d595f38801685f95f140f85b20f5dcfaa49cd.tar.gz unit-555d595f38801685f95f140f85b20f5dcfaa49cd.tar.bz2 |
Removed unused code related to testing of address binding.
Diffstat (limited to 'src/nxt_controller.c')
-rw-r--r-- | src/nxt_controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_controller.c b/src/nxt_controller.c index ad292421..26f1d53a 100644 --- a/src/nxt_controller.c +++ b/src/nxt_controller.c @@ -431,7 +431,7 @@ nxt_runtime_controller_socket(nxt_task_t *task, nxt_runtime_t *rt) #endif ls->handler = nxt_controller_conn_init; - if (nxt_listen_socket_create(task, ls, 0) != NXT_OK) { + if (nxt_listen_socket_create(task, ls) != NXT_OK) { return NXT_ERROR; } |