Fix: agent port file is o+w when launching as root
[lttng-tools.git] / src / bin / lttng-sessiond / client.c
index 3563811421359ea43331e8fd8babc535a90cd1d1..7feef3e0781f1acb12aee23d634f857bbf594e6c 100644 (file)
@@ -1786,7 +1786,6 @@ init_setup_error:
 static int create_client_sock(void)
 {
        int ret, client_sock;
-       const mode_t old_umask = umask(0);
 
        /* Create client tool unix socket */
        client_sock = lttcomm_create_unix_sock(config.client_unix_sock_path.value);
@@ -1817,7 +1816,6 @@ static int create_client_sock(void)
        DBG("Created client socket (fd = %i)", client_sock);
        ret = client_sock;
 end:
-       umask(old_umask);
        return ret;
 }
 
This page took 0.023708 seconds and 4 git commands to generate.