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

Diff for /src/usr.bin/rsync/sender.c between version 1.1 and 1.2

version 1.1, 2019/02/10 23:18:28 version 1.2, 2019/02/10 23:24:14
Line 65 
Line 65 
              ! io_write_int(sess, fdout, 0)) {               ! io_write_int(sess, fdout, 0)) {
                 ERRX1(sess, "io_write_int");                  ERRX1(sess, "io_write_int");
                 goto out;                  goto out;
         }          }
   
         /*          /*
          * Then the file list in any mode.           * Then the file list in any mode.
          * Finally, the IO error (always zero for us).           * Finally, the IO error (always zero for us).
          */           */
   
         if ( ! flist_send(sess, fdin, fdout, fl, flsz)) {          if ( ! flist_send(sess, fdin, fdout, fl, flsz)) {
                 ERRX1(sess, "flist_send");                  ERRX1(sess, "flist_send");
                 goto out;                  goto out;
         } else if ( ! io_write_int(sess, fdout, 0)) {          } else if ( ! io_write_int(sess, fdout, 0)) {
                 ERRX1(sess, "io_write_int");                  ERRX1(sess, "io_write_int");
                 goto out;                  goto out;
         }          }
   
         /* Exit if we're the server with zero files. */          /* Exit if we're the server with zero files. */
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2