diff options
author | nicm <nicm> | 2014-02-23 00:53:06 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-02-23 00:53:06 +0000 |
commit | f1828921dfed4b7f2ba38b8c4a370b42965c404c (patch) | |
tree | 0c9c620bbba87432fae1863661d929acde13d3ec /cmd-attach-session.c | |
parent | 315d45a0eb596048f2513dab98e4bb47ec1852a4 (diff) | |
download | rtmux-f1828921dfed4b7f2ba38b8c4a370b42965c404c.tar.gz rtmux-f1828921dfed4b7f2ba38b8c4a370b42965c404c.tar.bz2 rtmux-f1828921dfed4b7f2ba38b8c4a370b42965c404c.zip |
Change terminal-overrides to a server option (now that we have them), it
doesn't make much sense as a session option.
Diffstat (limited to 'cmd-attach-session.c')
-rw-r--r-- | cmd-attach-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-attach-session.c b/cmd-attach-session.c index 6fb83d20..94f01e4c 100644 --- a/cmd-attach-session.c +++ b/cmd-attach-session.c @@ -132,7 +132,7 @@ cmd_attach_session(struct cmd_q *cmdq, const char *tflag, int dflag, int rflag, server_redraw_client(cmdq->client); s->curw->flags &= ~WINLINK_ALERTFLAGS; } else { - if (server_client_open(cmdq->client, s, &cause) != 0) { + if (server_client_open(cmdq->client, &cause) != 0) { cmdq_error(cmdq, "open terminal failed: %s", cause); free(cause); return (CMD_RETURN_ERROR); |