[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.214 and 1.215

version 1.214, 2015/08/20 22:32:42 version 1.215, 2015/09/21 04:31:00
Line 2027 
Line 2027 
             NFDBITS), sizeof(fd_mask));              NFDBITS), sizeof(fd_mask));
         if (setp == NULL)          if (setp == NULL)
                 return SSH_ERR_ALLOC_FAIL;                  return SSH_ERR_ALLOC_FAIL;
         ssh_packet_write_poll(ssh);          if ((r = ssh_packet_write_poll(ssh)) != 0)
                   return r;
         while (ssh_packet_have_data_to_write(ssh)) {          while (ssh_packet_have_data_to_write(ssh)) {
                 memset(setp, 0, howmany(state->connection_out + 1,                  memset(setp, 0, howmany(state->connection_out + 1,
                     NFDBITS) * sizeof(fd_mask));                      NFDBITS) * sizeof(fd_mask));

Legend:
Removed from v.1.214  
changed lines
  Added in v.1.215