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

destroyed, from George Nachman.
pull/1/head
Nicholas Marriott 2013-04-10 12:15:36 +00:00
parent 20f0d917be
commit 7ada64d5f8
1 changed files with 1 additions and 1 deletions

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;