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;
if (c == NULL || c->session == NULL)
if (c == NULL)
return 0;
if (!(c->flags & CLIENT_CONTROL))
return 0;