]> andersk Git - openssh.git/commitdiff
- Fix EGD read bug by IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
authordamien <damien>
Wed, 31 May 2000 01:24:34 +0000 (01:24 +0000)
committerdamien <damien>
Wed, 31 May 2000 01:24:34 +0000 (01:24 +0000)
update credits

CREDITS
ChangeLog
entropy.c

diff --git a/CREDITS b/CREDITS
index 95fc7c1603e3de54a40432cea9b746ae12c16262..3539addc3afcc82710e239220d96ff54ce1188e8 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -25,9 +25,10 @@ Gary E. Miller <gem@rellim.com> - SCO support
 Ged Lodder <lodder@yacc.com.au> - HPUX fixes and enhancements
 Gert Doering <gd@hilb1.medat.de> - bug and portability fixes
 HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp> - Translations & doc fixes
-Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp> - IPv6 fixes
+Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp> - IPv6 and bug fixes
 Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp> - Configure fixes
 Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch
+IWAMURO Motonori <iwa@mmp.fujitsu.co.jp> - bugfixes
 Jani Hakala <jahakala@cc.jyu.fi> - Patches
 Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
 Jim Knoble <jmknoble@pobox.com> - Many patches
index 2899a4c4cee025a23e48429a44853fa4aa4684bf..a87f32b74817a9f57188521d0d69e7fb3a156ade 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 20000531
  - Cleanup of auth.c, login.c and fake-*
  - Cleanup of auth-pam.c, save and print "account expired" error messages
+ - Fix EGD read bug by IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
 
 20000530
  - Define atexit for old Solaris
index 2e0c1c50aeb6e5c1ac21989a5049260d98f60ed7..a2d0f32d3360b3f846ddcae31d42b0132d8aaef0 100644 (file)
--- a/entropy.c
+++ b/entropy.c
@@ -82,8 +82,6 @@ void get_random_bytes(unsigned char *buf, int len)
        c = atomicio(read, egd_socket, buf, len);
        if (c <= 0)
                fatal("Couldn't read from EGD socket \"%s\": %s", EGD_SOCKET, strerror(errno));
-       
-       close(EGD_SOCKET);
 }
 #else /* !EGD_SOCKET */
 #ifdef RANDOM_POOL
This page took 0.058766 seconds and 5 git commands to generate.