diff options
author | 2015-10-27 15:58:42 +0000 | |
---|---|---|
committer | 2015-10-27 15:58:42 +0000 | |
commit | d89252e541ebb5e90a6b7e1089b8f396e19ca235 (patch) | |
tree | 6fd0ce863c715f2818c48c94c4f8de9afdb057e9 /usr.bin/tmux/server.c | |
parent | Use AF_UNIX instead of AF_LOCAL. (diff) | |
download | wireguard-openbsd-d89252e541ebb5e90a6b7e1089b8f396e19ca235.tar.xz wireguard-openbsd-d89252e541ebb5e90a6b7e1089b8f396e19ca235.zip |
Move struct options into options.c.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r-- | usr.bin/tmux/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index 93b32f0035f..df145a16a2a 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.144 2015/10/27 13:23:24 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.145 2015/10/27 15:58:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -217,7 +217,7 @@ server_loop(void) server_client_loop(); - if (!options_get_number(&global_options, "exit-unattached")) { + if (!options_get_number(global_options, "exit-unattached")) { if (!RB_EMPTY(&sessions)) return (0); } |