summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
Diffstat (limited to 'session.c')
-rw-r--r--session.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/session.c b/session.c
index d692bc709..93babf957 100644
--- a/session.c
+++ b/session.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: session.c,v 1.240 2008/06/15 20:06:26 djm Exp $ */ 1/* $OpenBSD: session.c,v 1.241 2008/06/16 13:22:53 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved 4 * All rights reserved
@@ -2285,7 +2285,7 @@ session_input_channel_req(Channel *c, const char *rtype)
2285} 2285}
2286 2286
2287void 2287void
2288session_set_fds(Session *s, int fdin, int fdout, int fderr, int isatty) 2288session_set_fds(Session *s, int fdin, int fdout, int fderr, int is_tty)
2289{ 2289{
2290 if (!compat20) 2290 if (!compat20)
2291 fatal("session_set_fds: called for proto != 2.0"); 2291 fatal("session_set_fds: called for proto != 2.0");
@@ -2298,7 +2298,7 @@ session_set_fds(Session *s, int fdin, int fdout, int fderr, int isatty)
2298 channel_set_fds(s->chanid, 2298 channel_set_fds(s->chanid,
2299 fdout, fdin, fderr, 2299 fdout, fdin, fderr,
2300 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ, 2300 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
2301 1, isatty, CHAN_SES_WINDOW_DEFAULT); 2301 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
2302} 2302}
2303 2303
2304/* 2304/*