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

Diff for /src/usr.bin/ssh/nchan.c between version 1.7 and 1.8

version 1.7, 1999/11/24 16:15:25 version 1.8, 1999/11/24 20:21:48
Line 202 
Line 202 
 static void  static void
 chan_shutdown_write(Channel *c)  chan_shutdown_write(Channel *c)
 {  {
           /* shutdown failure is allowed if write failed already */
         debug("channel %d: shutdown_write", c->self);          debug("channel %d: shutdown_write", c->self);
         if (shutdown(c->sock, SHUT_WR) < 0)          if (shutdown(c->sock, SHUT_WR) < 0)
                 error("chan_shutdown_write failed for #%d/fd%d: %.100s",                  debug("chan_shutdown_write failed for #%d/fd%d: %.100s",
                       c->self, c->sock, strerror(errno));                        c->self, c->sock, strerror(errno));
 }  }
 static void  static void

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8