* login/openpty.c (openpty): Make sure pty does not because
controlling TTY.
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>
-/* 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.
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)
if (buf != _buf)
free (buf);
return 0;
-
+
fail:
close (master);
return -1;