diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-12-22 15:36:44 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-12-22 15:36:44 +0000 |
commit | a373235106d22fdead116d478087d8f8f11c150d (patch) | |
tree | 2f4aba9efa49f7855e918e095d13f6085f8d4d91 /cmd-list-sessions.c | |
parent | 9f3399da001580aa8b2118bb38245c7c5f26e944 (diff) | |
download | rtmux-a373235106d22fdead116d478087d8f8f11c150d.tar.gz rtmux-a373235106d22fdead116d478087d8f8f11c150d.tar.bz2 rtmux-a373235106d22fdead116d478087d8f8f11c150d.zip |
Sync OpenBSD patchset 806:
Store sessions in an RB tree by name rather than a list, this is tidier
and allows them to easily be shown sorted in various lists
(list-sessions/choose-sessions).
Keep a session index which is used in a couple of places internally but
make it an ever-increasing number rather than filling in gaps with new
sessions.
Diffstat (limited to 'cmd-list-sessions.c')
-rw-r--r-- | cmd-list-sessions.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/cmd-list-sessions.c b/cmd-list-sessions.c index f6ac2438..30ac6861 100644 --- a/cmd-list-sessions.c +++ b/cmd-list-sessions.c @@ -1,4 +1,4 @@ -/* $Id: cmd-list-sessions.c,v 1.25 2009-11-28 14:50:36 tcunha Exp $ */ +/* $Id: cmd-list-sessions.c,v 1.26 2010-12-22 15:36:44 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -46,14 +46,10 @@ cmd_list_sessions_exec(unused struct cmd *self, struct cmd_ctx *ctx) struct session *s; struct session_group *sg; char *tim, tmp[64]; - u_int i, idx; + u_int idx; time_t t; - for (i = 0; i < ARRAY_LENGTH(&sessions); i++) { - s = ARRAY_ITEM(&sessions, i); - if (s == NULL) - continue; - + RB_FOREACH(s, sessions, &sessions) { sg = session_group_find(s); if (sg == NULL) *tmp = '\0'; |