summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2018-08-02 11:56:13 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2018-08-02 11:56:13 +0000
commit58a7c01606aaf6491621b734cbac47d5fbe9a561 (patch)
treec28e57aced4a9d6b275396602992ec3ce9f4e0e2 /usr.bin/tmux/server.c
parent924aa77b8e2ecb14ecf7bf69a06a923addea022e (diff)
session_groups can be static also.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r--usr.bin/tmux/server.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c
index c3c39c31399..679bae889ef 100644
--- a/usr.bin/tmux/server.c
+++ b/usr.bin/tmux/server.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server.c,v 1.180 2018/03/08 08:09:10 nicm Exp $ */
+/* $OpenBSD: server.c,v 1.181 2018/08/02 11:56:12 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -202,7 +202,6 @@ server_start(struct tmuxproc *client, struct event_base *base, int lockfd,
RB_INIT(&all_window_panes);
TAILQ_INIT(&clients);
RB_INIT(&sessions);
- RB_INIT(&session_groups);
key_bindings_init();
gettimeofday(&start_time, NULL);