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

Diff for /src/usr.bin/rsync/io.c between version 1.18 and 1.19

version 1.18, 2019/06/28 13:35:03 version 1.19, 2020/11/24 16:54:44
Line 70 
Line 70 
   
         /* Poll and check for all possible errors. */          /* Poll and check for all possible errors. */
   
         if ((c = poll(&pfd, 1, POLL_TIMEOUT)) == -1) {          if ((c = poll(&pfd, 1, poll_timeout)) == -1) {
                 ERR("poll");                  ERR("poll");
                 return 0;                  return 0;
         } else if (c == 0) {          } else if (c == 0) {
Line 201 
Line 201 
   
         /* Poll and check for all possible errors. */          /* Poll and check for all possible errors. */
   
         if ((c = poll(&pfd, 1, POLL_TIMEOUT)) == -1) {          if ((c = poll(&pfd, 1, poll_timeout)) == -1) {
                 ERR("poll");                  ERR("poll");
                 return 0;                  return 0;
         } else if (c == 0) {          } else if (c == 0) {

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19