summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_listen_socket.c
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2024-04-24 23:31:54 +0200
committerAlejandro Colomar <alx@kernel.org>2024-06-18 22:59:45 +0200
commitd96d583328f614c658d42f5bb0d2a0f81621327e (patch)
tree66cacc47d4579dceec618035d3c505d7a3f88dbe /src/nxt_listen_socket.c
parent2e2e5d1e8e862c5d55cda0035eef90c5b6596112 (diff)
downloadunit-d96d583328f614c658d42f5bb0d2a0f81621327e.tar.gz
unit-d96d583328f614c658d42f5bb0d2a0f81621327e.tar.bz2
Use octal instead of mode macros
They are more readable. And we had a mix of both styles; there wasn't really a consistent style. Tested-by: Andrew Clayton <a.clayton@nginx.com> Reviewed-by: Andrew Clayton <a.clayton@nginx.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'src/nxt_listen_socket.c')
-rw-r--r--src/nxt_listen_socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_listen_socket.c b/src/nxt_listen_socket.c
index 047c1ef9..4fe3e20b 100644
--- a/src/nxt_listen_socket.c
+++ b/src/nxt_listen_socket.c
@@ -132,7 +132,7 @@ nxt_listen_socket_create(nxt_task_t *task, nxt_mp_t *mp,
nxt_runtime_t *rt = thr->runtime;
name = (nxt_file_name_t *) sa->u.sockaddr_un.sun_path;
- access = rt->control_mode > 0 ? rt->control_mode : S_IRUSR | S_IWUSR;
+ access = rt->control_mode > 0 ? rt->control_mode : 0600;
if (nxt_file_set_access(name, access) != NXT_OK) {
goto listen_fail;