diff options
author | markus@openbsd.org <markus@openbsd.org> | 2018-07-09 23:20:26 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-07-10 07:19:12 +0200 |
commit | 89dd615b8b531979be63f05f9d5624367c9b28e6 (patch) | |
tree | d807c8d1c948fdf71794cd410b9518e9b6499d69 /clientloop.c | |
parent | upstream: client: switch mux to sshbuf API; with & ok djm@ (diff) | |
download | openssh-89dd615b8b531979be63f05f9d5624367c9b28e6.tar.xz openssh-89dd615b8b531979be63f05f9d5624367c9b28e6.zip |
upstream: ttymodes: switch to sshbuf API; ok djm@
OpenBSD-Commit-ID: 5df340c5965e822c9da21e19579d08dea3cbe429
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c index 8da5d914e..7262a856f 100644 --- a/clientloop.c +++ b/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.315 2018/07/09 21:03:30 markus Exp $ */ +/* $OpenBSD: clientloop.c,v 1.316 2018/07/09 21:20:26 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -2210,7 +2210,7 @@ client_session2_setup(struct ssh *ssh, int id, int want_tty, int want_subsystem, packet_put_int((u_int)ws.ws_ypixel); if (tiop == NULL) tiop = get_saved_tio(); - tty_make_modes(-1, tiop); + ssh_tty_make_modes(ssh, -1, tiop); packet_send(); /* XXX wait for reply */ c->client_tty = 1; |