diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-10-21 22:50:52 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-10-21 22:50:52 +0800 |
commit | 55e7f0486a15b08122fffb22e38c71be15ef2986 (patch) | |
tree | 7de6c381ae3c68e5803bb62e535136b9f56247cf /random.c | |
parent | 88ac2da7c261eb91857336ff035a44cbcd3b2606 (diff) |
Fix shadowed "ret" variable
--HG--
branch : ecc
Diffstat (limited to 'random.c')
-rw-r--r-- | random.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -81,14 +81,14 @@ process_file(hash_state *hs, const char *filename, unsigned char readbuf[4096]; if (!already_blocked) { - int ret; + int res; struct timeval timeout = { .tv_sec = 2, .tv_usec = 0}; fd_set read_fds; FD_ZERO(&read_fds); FD_SET(readfd, &read_fds); - ret = select(readfd + 1, &read_fds, NULL, NULL, &timeout); - if (ret == 0) + res = select(readfd + 1, &read_fds, NULL, NULL, &timeout); + if (res == 0) { dropbear_log(LOG_WARNING, "Warning: Reading the randomness source '%s' seems to have blocked.\nYou may need to find a better entropy source.", filename); already_blocked = 1; |