X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=childio.c;h=1d1f1a7999a54a1bb0be5e064896a0e7286327c7;hb=6c09cbad6fd5630f883937303fc5e10a5ef8e3dc;hp=1bf245994c01d7fa15e05acc6fdf7afb3d62b316;hpb=a009a27e8c1e0bfa818f12fdcae675d0babc510a;p=xboard.git diff --git a/childio.c b/childio.c index 1bf2459..1d1f1a7 100644 --- a/childio.c +++ b/childio.c @@ -1,11 +1,12 @@ /* - * childio.c -- set up communication with child processes + * childio.c -- set up communication with child processes * * Copyright 1991 by Digital Equipment Corporation, Maynard, - * Massachusetts. + * Massachusetts. * * Enhancements Copyright 1992-2001, 2002, 2003, 2004, 2005, 2006, - * 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. + * 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free + * Software Foundation, Inc. * * The following terms apply to Digital Equipment Corporation's copyright * interest in XBoard: @@ -133,7 +134,7 @@ PseudoTTY (char pty_name[]) extern char *ptsname(); char *ptss; int fd; - + fd = open("/dev/ptmx", O_RDWR); if (fd < 0) return fd; if (grantpt(fd) == -1) return -1;