Use uid_t for UID not u_int.

pull/850/head
nicm 2017-03-21 19:28:03 +00:00
parent cdaa758340
commit 04e17a7e11
1 changed files with 2 additions and 3 deletions

5
tmux.c
View File

@ -112,18 +112,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;