X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4e9c7fae8f6feb2fecaea811b318cf416d23dd9a..5250c3bc20b0855f477b6b91457a745c105b3ac2:/options.c diff --git a/options.c b/options.c index aed912d7..d4a0f8f6 100644 --- 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",