diff options
author | Werner Koch <[email protected]> | 1998-11-08 17:23:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-11-08 17:23:14 +0000 |
commit | 35c10545075da2353511ed83f7b5bb664f055df4 (patch) | |
tree | c92b3dc1ff2306194942b0d28e16e9ea8d28846e /cipher | |
parent | overhauled the trustdb stuff (diff) | |
download | gnupg-0-4-3.tar.gz gnupg-0-4-3.zip |
ready to release 0.4.3V0-4-3
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 ) { |