shada: Do not handle EINTR in open_file

It is already handled by libuv which is used by os_open.
This commit is contained in:
ZyX 2015-07-26 02:19:49 +03:00
parent 931539d108
commit 21c12cf4e7

View File

@ -666,9 +666,6 @@ open_file_start:
did_try_to_free = true;
goto open_file_start;
}
if (-fd == EINTR) {
goto open_file_start;
}
if (-fd != EEXIST) {
emsg3(_(SERR "System error while opening ShaDa file %s: %s"),
fname, os_strerror(fd));