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

Diff for /src/usr.bin/cvs/remote.c between version 1.32 and 1.33

version 1.32, 2017/08/28 19:33:20 version 1.33, 2019/06/28 13:35:00
Line 176 
Line 176 
         if (fd == -1)          if (fd == -1)
                 fatal("cvs_remote_send_file: dup: %s", strerror(errno));                  fatal("cvs_remote_send_file: dup: %s", strerror(errno));
   
         if (lseek(fd, 0, SEEK_SET) < 0)          if (lseek(fd, 0, SEEK_SET) == -1)
                 fatal("cvs_remote_send_file: %s: lseek: %s", path,                  fatal("cvs_remote_send_file: %s: lseek: %s", path,
                     strerror(errno));                      strerror(errno));
   

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33