diff options
author | 2018-05-24 09:42:49 +0000 | |
---|---|---|
committer | 2018-05-24 09:42:49 +0000 | |
commit | 8a00c84cfc00a28fa8b08e6f9e7c012de7ccc786 (patch) | |
tree | 12e36be4a7f7bf31f3e2d3675296183cf5d7e3c9 /usr.bin/tmux/tmux.h | |
parent | Improve logging of the environment etc for new panes. (diff) | |
download | wireguard-openbsd-8a00c84cfc00a28fa8b08e6f9e7c012de7ccc786.tar.xz wireguard-openbsd-8a00c84cfc00a28fa8b08e6f9e7c012de7ccc786.zip |
Make server_client_get_cwd used (almost) everywhere we need to work out
the cwd, and do not fall back to "." as it is pretty useless. GitHub
issue 1331.
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 0ccdc9dea3b..180cf10e332 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.824 2018/04/18 14:35:37 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.825 2018/05/24 09:42:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1906,7 +1906,7 @@ void server_client_push_stderr(struct client *); void printflike(2, 3) server_client_add_message(struct client *, const char *, ...); char *server_client_get_path(struct client *, const char *); -const char *server_client_get_cwd(struct client *); +const char *server_client_get_cwd(struct client *, struct session *); /* server-fn.c */ void server_redraw_client(struct client *); |