Add check to disable Delta Compression with Global deduplication for now.
This commit is contained in:
parent
fbf4658635
commit
1143207cd5
1 changed files with 5 additions and 0 deletions
5
main.c
5
main.c
|
@ -2574,6 +2574,11 @@ main(int argc, char *argv[])
|
|||
exit(1);
|
||||
}
|
||||
|
||||
if (enable_rabin_global && enable_delta_encode) {
|
||||
fprintf(stderr, "Global Deduplication does not support Delta Compression yet.\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (num_rem == 0 && !pipe_mode) {
|
||||
usage(); /* At least 1 filename needed. */
|
||||
exit(1);
|
||||
|
|
Loading…
Reference in a new issue