lbutils/file: remove ETXTBSY from exemption on io

obsolete. ripe for abuse. do not permit this error.

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-31 12:04:37 +01:00
parent 277c0c8e87
commit bca09eebf3
+1 -2
View File
@@ -1003,8 +1003,7 @@ close_on_eintr(int *fd)
if ((rval == -1) && \
(errno == EINTR || \
errno == EAGAIN || \
errno == EWOULDBLOCK || \
errno == ETXTBSY)) \
errno == EWOULDBLOCK)) \
return 1; \
if (rval >= 0 && !errno) \
errno = saved_errno; \