Displaying 1 result from an estimated 1 matches for "remove_sent_fil".
Did you mean:
  remove_sent_files
  
2006 Sep 18
1
code 23 error.
...tf(FINFO, "server_sender starting pid=%ld\n",
   (long)getpid());
 }
 
 if (am_daemon && lp_write_only(module_id)) {
  rprintf(FERROR, "ERROR: module is write only\n");
  exit_cleanup(RERR_SYNTAX);
  return;
 }
 if (am_daemon && lp_read_only(module_id) && remove_sent_files) {
  rprintf(FERROR,
      "ERROR: --remove-sent-files cannot be used with a read-only module\n");
  exit_cleanup(RERR_SYNTAX);
  return;
 }
 
 if (!relative_paths && !push_dir(dir)) {
  rsyserr(FERROR, errno, "push_dir#3 %s failed",
   full_fname(dir));
  exit_cleanup...