Hey Nicholas,
Nicholas Marriott wrote:
> This turns out to be something pretty simple - we should not be
> executing commands in a client context before that client has finished
> identifying (that is, before we have the received the environment):
> [...]
> - TAILQ_FOREACH(c, &clients, entry)
> - items += cmdq_next(c);
> + TAILQ_FOREACH(c, &clients, entry) {
> + if (c->flags & CLIENT_IDENTIFIED)
> + items += cmdq_next(c);
> + }
Yup, that fixes the issue. Thanks a bunch! :)
Regards, Frank
--
In protocol design, perfection has been reached not when there is
nothing left to add, but when there is nothing left to take away.
-- RFC 1925
--
You received this message because you are subscribed to the Google Groups
"tmux-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.