diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2017-07-11 20:06:52 +0300 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2017-07-11 20:06:52 +0300 |
commit | bedd9c5645dfc9d3ea8210c70b7c750b18bc7d32 (patch) | |
tree | 5092616f54acc1d262ea9b9633cf38835b0fc0a3 /src | |
parent | da165aae88601628cef8db1646cd0ce3f0ee661f (diff) | |
download | nginx-bedd9c5645dfc9d3ea8210c70b7c750b18bc7d32.tar.gz nginx-bedd9c5645dfc9d3ea8210c70b7c750b18bc7d32.zip |
Core: fixed error message on setsockopt(SO_REUSEPORT) failure.
The error is fatal when configuring a new socket, so the ", ignored" part
is not appropriate and was removed.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ngx_connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c index be1e89c5a..392fc3587 100644 --- a/src/core/ngx_connection.c +++ b/src/core/ngx_connection.c @@ -483,7 +483,7 @@ ngx_open_listening_sockets(ngx_cycle_t *cycle) == -1) { ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno, - "setsockopt(SO_REUSEPORT) %V failed, ignored", + "setsockopt(SO_REUSEPORT) %V failed", &ls[i].addr_text); if (ngx_close_socket(s) == -1) { |