diff options
author | deraadt@openbsd.org <deraadt@openbsd.org> | 2020-07-07 04:47:21 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-07-15 07:08:10 +0200 |
commit | 6368022cd4dd508671c4999a59ec5826df098530 (patch) | |
tree | 49f3694096aaf41d47c411a5e7ea3180254ea71a /session.c | |
parent | upstream: some language improvements; ok markus (diff) | |
download | openssh-6368022cd4dd508671c4999a59ec5826df098530.tar.xz openssh-6368022cd4dd508671c4999a59ec5826df098530.zip |
upstream: correct recently broken comments
OpenBSD-Commit-ID: 964d9a88f7de1d0eedd3f8070b43fb6e426351f1
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.323 2020/07/05 23:59:45 djm Exp $ */ +/* $OpenBSD: session.c,v 1.324 2020/07/07 02:47:21 deraadt Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -644,7 +644,7 @@ do_exec_pty(struct ssh *ssh, Session *s, const char *command) s->pid = pid; - /* Parent. Close the child side of the pseudo tty. */ + /* Parent. Close the slave side of the pseudo tty. */ close(ttyfd); /* Enter interactive session. */ |