summaryrefslogtreecommitdiffstats
path: root/src/fastd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fastd.c')
-rw-r--r--src/fastd.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/fastd.c b/src/fastd.c
index c129a3c..c7a5f1e 100644
--- a/src/fastd.c
+++ b/src/fastd.c
@@ -294,11 +294,6 @@ void fastd_close_all_fds(void) {
for (fd = 3; fd < maxfd; fd++) {
if (close(fd) < 0) {
- if (errno == EINTR) {
- fd--;
- continue;
- }
-
if (errno != EBADF)
pr_error_errno("close");
}