Commit 054abde2 authored by Wayne Davison's avatar Wayne Davison

Handle new IOERR_DEL_LIMIT bit in io_error.

parent 24cecf13
...@@ -136,10 +136,12 @@ void _exit_cleanup(int code, const char *file, int line) ...@@ -136,10 +136,12 @@ void _exit_cleanup(int code, const char *file, int line)
} }
if (code == 0) { if (code == 0) {
if ((io_error & ~IOERR_VANISHED) || log_got_error) if (io_error & IOERR_DEL_LIMIT)
code = RERR_PARTIAL; code = RERR_DEL_LIMIT;
else if (io_error) if (io_error & IOERR_VANISHED)
code = RERR_VANISHED; code = RERR_VANISHED;
if (io_error & IOERR_GENERAL || log_got_error)
code = RERR_PARTIAL;
} }
if (code) if (code)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment