summaryrefslogtreecommitdiff
path: root/pty.c
diff options
context:
space:
mode:
Diffstat (limited to 'pty.c')
-rw-r--r--pty.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/pty.c b/pty.c
index 27e0fe9e9..4c2dc9cfe 100644
--- a/pty.c
+++ b/pty.c
@@ -14,7 +14,7 @@
14 */ 14 */
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$Id: pty.c,v 1.13 2000/03/02 12:31:50 damien Exp $"); 17RCSID("$Id: pty.c,v 1.14 2000/03/02 12:56:13 damien Exp $");
18 18
19#ifdef HAVE_UTIL_H 19#ifdef HAVE_UTIL_H
20# include <util.h> 20# include <util.h>
@@ -187,10 +187,12 @@ pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen)
187void 187void
188pty_release(const char *ttyname) 188pty_release(const char *ttyname)
189{ 189{
190 if ((chown(ttyname, (uid_t) 0, (gid_t) 0) < 0) && (errno != ENOENT)) 190#ifndef PTY_REMOVED_ON_CLOSE
191 if (chown(ttyname, (uid_t) 0, (gid_t) 0) < 0)
191 error("chown %.100s 0 0 failed: %.100s", ttyname, strerror(errno)); 192 error("chown %.100s 0 0 failed: %.100s", ttyname, strerror(errno));
192 if ((chmod(ttyname, (mode_t) 0666) < 0) && (errno != ENOENT)) 193 if (chmod(ttyname, (mode_t) 0666) < 0)
193 error("chmod %.100s 0666 failed: %.100s", ttyname, strerror(errno)); 194 error("chmod %.100s 0666 failed: %.100s", ttyname, strerror(errno));
195#endif /* PTY_REMOVED_ON_CLOSE */
194} 196}
195 197
196/* Makes the tty the processes controlling tty and sets it to sane modes. */ 198/* Makes the tty the processes controlling tty and sets it to sane modes. */