Optimized.

FossilOrigin-Name: 9d6f9b2a273ebf38b67a951d55e200d9e92be12a85b95ff780f4554c3eaa4769
This commit is contained in:
7u83@mail.ru 2015-04-02 16:49:01 +00:00
parent 1dae8112d2
commit 0abb8408f7
1 changed files with 1 additions and 6 deletions

View File

@ -53,11 +53,6 @@ int cw_rand_r(uint8_t*dst, int len)
return 0;
}
/* if (l<len){
cw_dbg(DBG_CW_INFO,"Not enough entropy reading from %s, using pseudo rand",cw_rand_dev);
return cw_pseudo_rand(dst,len);
}
*/
return l;
}
@ -71,7 +66,7 @@ int cw_rand(uint8_t *dst, int len)
int l = cw_rand_r((uint8_t*)(&rinit),sizeof(uint32_t));
if (l<sizeof(uint32_t)){
cw_log(LOG_WARNING,"Can't read enough bytes from %s, using time to init rand",cw_rand_dev);
cw_log(LOG_WARNING,"Can't read enough bytes from %s. Using time to init rand instead.",cw_rand_dev);
rinit=time(NULL);
}