From 2a5702a936829c30b1c427028fdb75a21e2e6771 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 12 Mar 2020 09:26:34 +0000 Subject: When the server socket is given by the user with -S, create it with umask 177 instead of 117 because it may not be in a safe directory like the default directory in /tmp. The user can chmod it more open after it is created if they want. --- tmux.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 6572ad4e..572e705c 100644 --- a/tmux.c +++ b/tmux.c @@ -379,12 +379,15 @@ main(int argc, char **argv) path[strcspn(path, ",")] = '\0'; } } - if (path == NULL && (path = make_label(label, &cause)) == NULL) { - if (cause != NULL) { - fprintf(stderr, "%s\n", cause); - free(cause); + if (path == NULL) { + if ((path = make_label(label, &cause)) == NULL) { + if (cause != NULL) { + fprintf(stderr, "%s\n", cause); + free(cause); + } + exit(1); } - exit(1); + flags |= CLIENT_DEFAULTSOCKET; } socket_path = path; free(label); -- cgit v1.2.3