Update environment with -E when attach-session used on an already

attached session or switch-client used on the current session. From Cam
Hutchison.
This commit is contained in:
nicm
2015-07-06 14:24:57 +00:00
parent f557c7d8ca
commit b298478435
2 changed files with 7 additions and 1 deletions

View File

@@ -119,7 +119,7 @@ cmd_switch_client_exec(struct cmd *self, struct cmd_q *cmdq)
}
}
if (c != NULL && s != c->session && !args_has(args, 'E')) {
if (c != NULL && !args_has(args, 'E')) {
update = options_get_string(&s->options, "update-environment");
environ_update(update, &c->environ, &s->environ);
}