Don't force the whole-file option when using read-batch.

This commit is contained in:
Wayne Davison
2004-05-05 16:23:49 +00:00
parent 377dbd2075
commit 935c64173f

View File

@@ -213,7 +213,7 @@ static BOOL disable_deltas_p(void)
{
if (whole_file > 0)
return True;
if (whole_file == 0 || write_batch)
if (whole_file == 0 || write_batch || read_batch)
return False;
return local_server;
}