diff options
author | 2017-12-19 15:00:39 +0000 | |
---|---|---|
committer | 2017-12-19 15:00:39 +0000 | |
commit | 039206c66e1ba3018832aed6de439ca712b1751d (patch) | |
tree | 315ba103e77e7a89bec30da16837cd5167a5db25 /usr.bin/tmux/tmux.h | |
parent | somehow, I lost that static. (diff) | |
download | wireguard-openbsd-039206c66e1ba3018832aed6de439ca712b1751d.tar.xz wireguard-openbsd-039206c66e1ba3018832aed6de439ca712b1751d.zip |
Report better error from server when socket create fails, GitHub issue
1201.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 81fd52f2d27..d175a44157e 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.814 2017/11/15 19:59:27 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.815 2017/12/19 15:00:39 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1885,7 +1885,7 @@ void server_client_set_key_table(struct client *, const char *); const char *server_client_get_key_table(struct client *); int server_client_check_nested(struct client *); void server_client_handle_key(struct client *, key_code); -void server_client_create(int); +struct client *server_client_create(int); int server_client_open(struct client *, char **); void server_client_unref(struct client *); void server_client_lost(struct client *); |