summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-01-12 22:23:58 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-01-12 22:23:58 +0000
commitb3438c86bfb69bfdda55e15525abcacd33738686 (patch)
tree761213d7f4cb2b2fea4f7f6d465dccab42fd1b9e /tmux.c
parent47e18f4ceacc4c207dc0d392f51d55b2286672f2 (diff)
Use TMPDIR if set, from Han Boetes.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index 3b40da12..0225f5f6 100644
--- a/tmux.c
+++ b/tmux.c
@@ -169,12 +169,15 @@ parseenvironment(void)
char *
makesocketpath(const char *label)
{
- char base[MAXPATHLEN], *path;
+ char base[MAXPATHLEN], *path, *s;
struct stat sb;
u_int uid;
uid = getuid();
- xsnprintf(base, MAXPATHLEN, "%s/tmux-%d", _PATH_TMP, uid);
+ if ((s = getenv("TMPDIR")) == NULL || *s == '\0')
+ xsnprintf(base, sizeof base, "%s/tmux-%u", _PATH_TMP, uid);
+ else
+ xsnprintf(base, sizeof base, "%s/tmux-%u", s, uid);
if (mkdir(base, S_IRWXU) != 0 && errno != EEXIST)
return (NULL);