1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-07 00:28:48 +00:00

Fix bug where end guard in control mode was not printed after session

destroyed, from George Nachman.
This commit is contained in:
Nicholas Marriott 2013-04-10 12:15:36 +00:00
parent 20f0d917be
commit 7ada64d5f8

View File

@ -158,7 +158,7 @@ cmdq_guard(struct cmd_q *cmdq, const char *guard)
{ {
struct client *c = cmdq->client; struct client *c = cmdq->client;
if (c == NULL || c->session == NULL) if (c == NULL)
return 0; return 0;
if (!(c->flags & CLIENT_CONTROL)) if (!(c->flags & CLIENT_CONTROL))
return 0; return 0;