Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2018-01-01 12:01:13 +00:00
3 changed files with 9 additions and 7 deletions

7
tmux.c
View File

@ -190,7 +190,7 @@ main(int argc, char **argv)
{
char *path, *label, **var;
char tmp[PATH_MAX];
const char *s, *shell;
const char *s, *shell, *cwd;
int opt, flags, keys;
const struct options_table_entry *oe;
@ -294,8 +294,9 @@ main(int argc, char **argv)
global_environ = environ_create();
for (var = environ; *var != NULL; var++)
environ_put(global_environ, *var);
if (getcwd(tmp, sizeof tmp) != NULL)
environ_set(global_environ, "PWD", "%s", tmp);
if ((cwd = getenv("PWD")) == NULL &&
(cwd = getcwd(tmp, sizeof tmp)) != NULL)
environ_set(global_environ, "PWD", "%s", cwd);
global_options = options_create(NULL);
global_s_options = options_create(NULL);