add a --ignore-errors option

This commit is contained in:
Andrew Tridgell
2000-03-21 04:06:04 +00:00
parent 5f7ce2041c
commit ef55c686bc
4 changed files with 17 additions and 3 deletions

View File

@@ -862,7 +862,8 @@ struct file_list *recv_file_list(int f)
/* if protocol version is >= 17 then recv the io_error flag */
if (f != -1 && remote_version >= 17) {
extern int module_id;
if (lp_ignore_errors(module_id)) {
extern int ignore_errors;
if (lp_ignore_errors(module_id) || ignore_errors) {
read_int(f);
} else {
io_error |= read_int(f);