Merge branch 'obsd-master'

pull/850/head
Thomas Adam 2017-03-21 20:01:16 +00:00
commit 02ddd4ce70
1 changed files with 2 additions and 3 deletions

5
tmux.c
View File

@ -110,18 +110,17 @@ make_label(const char *label)
{
char *base, resolved[PATH_MAX], *path, *s;
struct stat sb;
u_int uid;
uid_t uid;
int saved_errno;
if (label == NULL)
label = "default";
uid = getuid();
if ((s = getenv("TMUX_TMPDIR")) != NULL && *s != '\0')
xasprintf(&base, "%s/tmux-%u", s, uid);
else
xasprintf(&base, "%s/tmux-%u", _PATH_TMP, uid);
xasprintf(&base, "%s/tmux-%ld", _PATH_TMP, (long)uid);
if (mkdir(base, S_IRWXU) != 0 && errno != EEXIST)
goto fail;