1
0
mirror of https://github.com/tmate-io/tmate-ssh-server.git synced 2020-11-18 19:53:51 -08:00

Use RB_MIN to get the lowest index for the current window when creating

grouped sessions, rather than using RB_ROOT.
This commit is contained in:
nicm 2015-05-29 23:02:27 +00:00
parent 379400cfa6
commit a55e569af5

View File

@ -254,7 +254,7 @@ cmd_new_session_exec(struct cmd *self, struct cmd_q *cmdq)
if (groupwith != NULL) {
session_group_add(groupwith, s);
session_group_synchronize_to(s);
session_select(s, RB_ROOT(&s->windows)->idx);
session_select(s, RB_MIN(winlinks, &s->windows)->idx);
}
/*