Add check to disable Delta Compression with Global deduplication for now.

This commit is contained in:
Moinak Ghosh 2013-03-24 23:30:40 +05:30
parent fbf4658635
commit 1143207cd5

5
main.c
View file

@ -2574,6 +2574,11 @@ main(int argc, char *argv[])
exit(1); 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) { if (num_rem == 0 && !pipe_mode) {
usage(); /* At least 1 filename needed. */ usage(); /* At least 1 filename needed. */
exit(1); exit(1);