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

Diff for /src/usr.bin/ssh/packet.c between version 1.173 and 1.174

version 1.173, 2011/05/06 21:14:05 version 1.174, 2011/12/07 05:44:38
Line 238 
Line 238 
 void  void
 packet_set_timeout(int timeout, int count)  packet_set_timeout(int timeout, int count)
 {  {
         if (timeout == 0 || count == 0) {          if (timeout <= 0 || count <= 0) {
                 active_state->packet_timeout_ms = -1;                  active_state->packet_timeout_ms = -1;
                 return;                  return;
         }          }

Legend:
Removed from v.1.173  
changed lines
  Added in v.1.174