Remove erroneous space from the HPUX open()
authorTheodore Tso <tytso@mit.edu>
Tue, 3 Jun 1997 23:05:48 +0000 (23:05 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 3 Jun 1997 23:05:48 +0000 (23:05 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10093 dc483132-0cff-0310-8789-dd5450dbe970

src/util/pty/ChangeLog
src/util/pty/getpty.c

index 95f945be072e0c0b307f79653cfa01acf5142238..656f400b3ea1989d637fba2b3551d9a34c070183 100644 (file)
@@ -1,3 +1,7 @@
+Tue Jun  3 23:05:07 1997  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * getpty.c (pty_getpty): Remove erroneous space from the HPUX open().
+
 Fri Apr 25 19:14:48 1997  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * configure.in: Check for openpty() in -lutil.  It's there on
index 1185f2c6f2061b813ce0710a30d14da1e3cf6942..8b97bff009399c4abd5b108726a8749b1334e34d 100644 (file)
@@ -63,7 +63,7 @@ close(slavefd);
     return 0;
 #else /*HAVE__GETPTY*/
     
-    *fd = open(" /dev/ptym/clone", O_RDWR|O_NDELAY);   /* HPUX*/
+    *fd = open("/dev/ptym/clone", O_RDWR|O_NDELAY);    /* HPUX*/
 #ifdef HAVE_STREAMS
     if (*fd < 0) *fd = open("/dev/ptmx",O_RDWR|O_NDELAY); /*Solaris*/
 #endif