GCC7 fix fallthrough: add default call_error_handler into EDQUOT case

pull/18/head
Frédéric Pierret 7 years ago
parent c62c8e4416
commit 27c3582dc5
No known key found for this signature in database
GPG Key ID: 1DABC232BE02201E

@ -100,10 +100,10 @@ void wait_for_result(void)
* desynchronized in this case */
return;
}
/* fallthrough */
call_error_handler("File copy: %s%s%s",strerror(hdr.error_code), last_filename_prefix, last_filename);
break;
default:
call_error_handler("File copy: %s%s%s",
strerror(hdr.error_code), last_filename_prefix, last_filename);
call_error_handler("File copy: %s%s%s",strerror(hdr.error_code), last_filename_prefix, last_filename);
}
}
if (hdr.crc32 != crc32_sum) {

Loading…
Cancel
Save