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

Diff for /src/usr.bin/rsync/fargs.c between version 1.16 and 1.17

version 1.16, 2019/04/04 04:19:54 version 1.17, 2019/05/08 20:00:25
Line 98 
Line 98 
                 addargs(&args, "-r");                  addargs(&args, "-r");
         if (sess->opts->preserve_times)          if (sess->opts->preserve_times)
                 addargs(&args, "-t");                  addargs(&args, "-t");
         if (sess->opts->verbose > 3)          if (verbose > 3)
                 addargs(&args, "-v");                  addargs(&args, "-v");
         if (sess->opts->verbose > 2)          if (verbose > 2)
                 addargs(&args, "-v");                  addargs(&args, "-v");
         if (sess->opts->verbose > 1)          if (verbose > 1)
                 addargs(&args, "-v");                  addargs(&args, "-v");
         if (sess->opts->verbose > 0)          if (verbose > 0)
                 addargs(&args, "-v");                  addargs(&args, "-v");
         if (sess->opts->one_file_system > 1)          if (sess->opts->one_file_system > 1)
                 addargs(&args, "-x");                  addargs(&args, "-x");
Line 129 
Line 129 
         return args.list;          return args.list;
 out:  out:
         freeargs(&args);          freeargs(&args);
         ERR(sess, "calloc");          ERR("calloc");
         return NULL;          return NULL;
 }  }

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17