diff options
Diffstat (limited to '')
-rw-r--r-- | cipher/ChangeLog | 4 | ||||
-rw-r--r-- | cipher/rand-unix.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog index 58997ecab..b6072a80e 100644 --- a/cipher/ChangeLog +++ b/cipher/ChangeLog @@ -1,3 +1,7 @@ +Sun Nov 8 17:44:36 1998 Werner Koch ([email protected]) + + * radn-unix.c (read_random_source): Removed the assert. + Mon Oct 19 18:34:30 1998 me,,, (wk@tobold) * pubkey.c: Hack to allow us to give some info about RSA keys back. diff --git a/cipher/rand-unix.c b/cipher/rand-unix.c index b9423e0d1..d256fd20b 100644 --- a/cipher/rand-unix.c +++ b/cipher/rand-unix.c @@ -157,7 +157,6 @@ read_random_source( byte *buffer, size_t length, int level ) continue; } - assert( length < 500 ); do { n = read(fd, buffer, length ); if( n >= 0 && n > length ) { |