diff options
author | nicm <nicm> | 2015-10-18 20:42:42 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-10-18 20:42:42 +0000 |
commit | 174a2ad731055f97838290226d656813143620ca (patch) | |
tree | cc063339064f0dda959e4d7f81416d1691c5de37 /tmux.h | |
parent | 9c601ebde81a3965541161499ebce0b5e5f1122f (diff) | |
download | rtmux-174a2ad731055f97838290226d656813143620ca.tar.gz rtmux-174a2ad731055f97838290226d656813143620ca.tar.bz2 rtmux-174a2ad731055f97838290226d656813143620ca.zip |
Pass current directory as a string rather than a file descriptor because
pledge doesn't let us pass directory file descriptors.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -395,11 +395,12 @@ enum msgtype { MSG_IDENTIFY_FLAGS = 100, MSG_IDENTIFY_TERM, MSG_IDENTIFY_TTYNAME, - MSG_IDENTIFY_CWD, + MSG_IDENTIFY_OLDCWD, /* unused */ MSG_IDENTIFY_STDIN, MSG_IDENTIFY_ENVIRON, MSG_IDENTIFY_DONE, MSG_IDENTIFY_CLIENTPID, + MSG_IDENTIFY_CWD, MSG_COMMAND = 200, MSG_DETACH, |