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

Diff for /src/usr.bin/ssh/misc.c between version 1.9 and 1.10

version 1.9, 2001/05/19 19:43:57 version 1.10, 2001/06/16 08:49:38
Line 82 
Line 82 
                 debug2("fd %d is not O_NONBLOCK", fd);                  debug2("fd %d is not O_NONBLOCK", fd);
                 return;                  return;
         }          }
         debug("fd %d setting O_NONBLOCK", fd);          debug("fd %d clearing O_NONBLOCK", fd);
         val &= ~O_NONBLOCK;          val &= ~O_NONBLOCK;
         if (fcntl(fd, F_SETFL, val) == -1)          if (fcntl(fd, F_SETFL, val) == -1)
                 if (errno != ENODEV)                  if (errno != ENODEV)

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