[BACK]Return to pty.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/pty.c between version 1.10 and 1.11

version 1.10, 1999/12/09 00:24:03 version 1.11, 1999/12/11 09:35:46
Line 153 
Line 153 
                 *ptyfd = open(buf, O_RDWR | O_NOCTTY);                  *ptyfd = open(buf, O_RDWR | O_NOCTTY);
                 if (*ptyfd < 0)                  if (*ptyfd < 0)
                         continue;                          continue;
                 snprintf(namebuf, sizeof namebuflen, "/dev/tty%c%c",                  snprintf(namebuf, namebuflen, "/dev/tty%c%c",
                     ptymajors[i / num_minors], ptyminors[i % num_minors]);                      ptymajors[i / num_minors], ptyminors[i % num_minors]);
   
                 /* Open the slave side. */                  /* Open the slave side. */

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11