summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2018-07-09 21:20:26 +0000
committerDamien Miller <djm@mindrot.org>2018-07-10 15:19:12 +1000
commit89dd615b8b531979be63f05f9d5624367c9b28e6 (patch)
treed807c8d1c948fdf71794cd410b9518e9b6499d69 /clientloop.c
parentf4608a7065480516ab46214f554e5f853fb7870f (diff)
upstream: ttymodes: switch to sshbuf API; ok djm@
OpenBSD-Commit-ID: 5df340c5965e822c9da21e19579d08dea3cbe429
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c4
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 @@
1/* $OpenBSD: clientloop.c,v 1.315 2018/07/09 21:03:30 markus Exp $ */ 1/* $OpenBSD: clientloop.c,v 1.316 2018/07/09 21:20:26 markus Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * 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,
2210 packet_put_int((u_int)ws.ws_ypixel); 2210 packet_put_int((u_int)ws.ws_ypixel);
2211 if (tiop == NULL) 2211 if (tiop == NULL)
2212 tiop = get_saved_tio(); 2212 tiop = get_saved_tio();
2213 tty_make_modes(-1, tiop); 2213 ssh_tty_make_modes(ssh, -1, tiop);
2214 packet_send(); 2214 packet_send();
2215 /* XXX wait for reply */ 2215 /* XXX wait for reply */
2216 c->client_tty = 1; 2216 c->client_tty = 1;