X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=childio.c;h=1d1f1a7999a54a1bb0be5e064896a0e7286327c7;hb=1eb96d7121b161a946efaf18eded57d630f21ad1;hp=0cb4dc149e08c3c119872ec9ba8b2b8541fd40e0;hpb=4e062d14429ed3a3a251c971690bade4c8cba946;p=xboard.git diff --git a/childio.c b/childio.c index 0cb4dc1..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 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;