Revert "Check result of read_until, and return Error if 0, which indicates EOF was found before delimeter."

This reverts commit 61e888de7f.
This commit is contained in:
Reid Wagner
2019-02-10 20:25:45 -08:00
committed by David Peter
parent 9e11d66979
commit 10c5f79640
3 changed files with 9 additions and 15 deletions

View File

@ -43,7 +43,6 @@ impl<'b> Controller<'b> {
for input_file in &self.config.files {
match input_file.get_reader(&stdin) {
Err(Error(ErrorKind::ImmediateEOF, _)) => (),
Err(error) => {
handle_error(&error);
no_errors = false;