From cb144c0097fe111d9881457de7c686c190c07944 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Tue, 17 Feb 2015 13:39:26 +0100 Subject: [PATCH] cleanup: drop unused val --- libdaemon/client/daemon-io.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libdaemon/client/daemon-io.c b/libdaemon/client/daemon-io.c index d19acd641..5ce9dde83 100644 --- a/libdaemon/client/daemon-io.c +++ b/libdaemon/client/daemon-io.c @@ -51,10 +51,7 @@ int buffer_read(int fd, struct buffer *buffer) { return 0; /* we should never encounter EOF here */ } else if (result < 0 && ( errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR || errno == EIO)) { - struct timeval tval; fd_set in; - tval.tv_sec = 1; - tval.tv_usec = 0; FD_ZERO(&in); FD_SET(fd, &in); /* ignore the result, this is just a glorified sleep */ @@ -83,10 +80,7 @@ int buffer_write(int fd, const struct buffer *buffer) { written += result; else if (result < 0 && ( errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR || errno == EIO)) { - struct timeval tval; fd_set out; - tval.tv_sec = 1; - tval.tv_usec = 0; FD_ZERO(&out); FD_SET(fd, &out); /* ignore the result, this is just a glorified sleep */