summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm>2017-03-21 19:28:03 +0000
committernicm <nicm>2017-03-21 19:28:03 +0000
commit04e17a7e110bb0c70bc917b340aedd94fa60891f (patch)
tree6a1cb06ae6e3ccca00c5861da44ffe5d205caaa2
parentcdaa758340d31e57144ecb7a6e5b1dec138cc693 (diff)
Use uid_t for UID not u_int.
-rw-r--r--tmux.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tmux.c b/tmux.c
index 12402bb5..2e8b6205 100644
--- a/tmux.c
+++ b/tmux.c
@@ -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;