[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.269 and 1.270

version 1.269, 2017/12/18 23:13:42 version 1.270, 2018/05/25 03:20:59
Line 1326 
Line 1326 
                         if ((r = select(state->connection_in + 1, setp,                          if ((r = select(state->connection_in + 1, setp,
                             NULL, NULL, timeoutp)) >= 0)                              NULL, NULL, timeoutp)) >= 0)
                                 break;                                  break;
                         if (errno != EAGAIN && errno != EINTR)                          if (errno != EAGAIN && errno != EINTR) {
                                 break;                                  r = SSH_ERR_SYSTEM_ERROR;
                                   goto out;
                           }
                         if (state->packet_timeout_ms == -1)                          if (state->packet_timeout_ms == -1)
                                 continue;                                  continue;
                         ms_subtract_diff(&start, &ms_remain);                          ms_subtract_diff(&start, &ms_remain);

Legend:
Removed from v.1.269  
changed lines
  Added in v.1.270