[openssh-commits] [openssh] 01/01: platform's with openpty don't need pty_release
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon Apr 13 14:40:32 AEST 2015
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 597986493412c499f2bc2209420cb195f97b3668
Author: Damien Miller <djm at google.com>
Date: Thu Apr 9 10:14:48 2015 +1000
platform's with openpty don't need pty_release
---
sshpty.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sshpty.c b/sshpty.c
index d2ff8c1..7bb7641 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -85,12 +85,12 @@ pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, size_t namebuflen)
void
pty_release(const char *tty)
{
-#ifndef __APPLE_PRIVPTY__
+#if !defined(__APPLE_PRIVPTY__) && !defined(HAVE_OPENPTY)
if (chown(tty, (uid_t) 0, (gid_t) 0) < 0)
error("chown %.100s 0 0 failed: %.100s", tty, strerror(errno));
if (chmod(tty, (mode_t) 0666) < 0)
error("chmod %.100s 0666 failed: %.100s", tty, strerror(errno));
-#endif /* __APPLE_PRIVPTY__ */
+#endif /* !__APPLE_PRIVPTY__ && !HAVE_OPENPTY */
}
/* Makes the tty the process's controlling tty and sets it to sane modes. */
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list