summaryrefslogtreecommitdiff
path: root/libdaemon
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2015-02-17 13:39:26 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2015-02-17 13:39:26 +0100
commitcb144c0097fe111d9881457de7c686c190c07944 (patch)
treecb9495134dd5bad34d57bf9facb4d15224c8ba82 /libdaemon
parentcd1a76a49222feb975b440199881d7c70faf103a (diff)
downloadlvm2-cb144c0097fe111d9881457de7c686c190c07944.tar.gz
cleanup: drop unused val
Diffstat (limited to 'libdaemon')
-rw-r--r--libdaemon/client/daemon-io.c6
1 files changed, 0 insertions, 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 */