Don't allow --remove-s*-files with --read-batch.
authorWayne Davison <wayned@samba.org>
Sun, 12 Apr 2009 19:57:31 +0000 (12:57 -0700)
committerWayne Davison <wayned@samba.org>
Sun, 12 Apr 2009 19:57:31 +0000 (12:57 -0700)
options.c

index aed912d..d4a0f8f 100644 (file)
--- a/options.c
+++ b/options.c
@@ -1854,6 +1854,12 @@ int parse_arguments(int *argc_p, const char ***argv_p)
                        "--read-batch cannot be used with --files-from\n");
                return 0;
        }
+       if (read_batch && remove_source_files) {
+               snprintf(err_buf, sizeof err_buf,
+                       "--read-batch cannot be used with --remove-%s-files\n",
+                       remove_source_files == 1 ? "source" : "sent");
+               return 0;
+       }
        if (batch_name && strlen(batch_name) > MAX_BATCH_NAME_LEN) {
                snprintf(err_buf, sizeof err_buf,
                        "the batch-file name must be %d characters or less.\n",