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

Diff for /src/usr.bin/ssh/dispatch.c between version 1.23 and 1.24

version 1.23, 2015/01/19 20:07:45 version 1.24, 2015/01/28 22:05:31
Line 135 
Line 135 
 {  {
         int r;          int r;
   
         if ((r = ssh_dispatch_run(ssh, mode, done, ctxt)) != 0)          if ((r = ssh_dispatch_run(ssh, mode, done, ctxt)) != 0) {
                 fatal("%s: %s", __func__, ssh_err(r));                  switch (r) {
                   case SSH_ERR_CONN_CLOSED:
                           logit("Connection closed by %.200s",
                               ssh_remote_ipaddr(ssh));
                           cleanup_exit(255);
                   case SSH_ERR_CONN_TIMEOUT:
                           logit("Connection to %.200s timed out while "
                               "waiting to read", ssh_remote_ipaddr(ssh));
                           cleanup_exit(255);
                   default:
                           fatal("%s: %s", __func__, ssh_err(r));
                   }
           }
 }  }

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24