Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 24 May 1999 18:22:25 +0000 (18:22 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 24 May 1999 18:22:25 +0000 (18:22 +0000)
* login/openpty.c (openpty): Make sure pty does not because
controlling TTY.

ChangeLog
login/openpty.c

index d2bfea0..4a94d4c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-05-24  Ulrich Drepper  <drepper@cygnus.com>
 
+       * login/openpty.c (openpty): Make sure pty does not because
+       controlling TTY.
+
        * ctype/ctype.h: Don't optimize toupper/tolower for C++.
 
 1999-05-23  Roland McGrath  <roland@baalperazim.frob.com>
index 630061d..3bfb8d3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
 
@@ -108,7 +108,7 @@ openpty (int *amaster, int *aslave, char *name, struct termios *termp,
   if (pts_name (master, &buf, sizeof (_buf)))
     goto fail;
 
-  slave = open (buf, O_RDWR);
+  slave = open (buf, O_RDWR | O_NOCTTY);
   if (slave == -1)
     {
       if (buf != _buf)
@@ -131,7 +131,7 @@ openpty (int *amaster, int *aslave, char *name, struct termios *termp,
   if (buf != _buf)
     free (buf);
   return 0;
-  
+
  fail:
   close (master);
   return -1;