[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.25 and 1.26

version 1.25, 2015/01/30 01:13:33 version 1.26, 2015/02/12 20:34:19
Line 145 
Line 145 
                         logit("Connection to %.200s timed out while "                          logit("Connection to %.200s timed out while "
                             "waiting to read", ssh_remote_ipaddr(ssh));                              "waiting to read", ssh_remote_ipaddr(ssh));
                         cleanup_exit(255);                          cleanup_exit(255);
                   case SSH_ERR_DISCONNECTED:
                           logit("Disconnected from %.200s",
                               ssh_remote_ipaddr(ssh));
                           cleanup_exit(255);
                 default:                  default:
                         fatal("%s: %s", __func__, ssh_err(r));                          fatal("%s: %s", __func__, ssh_err(r));
                 }                  }

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26