aboutsummaryrefslogtreecommitdiffstats
path: root/cipher
diff options
context:
space:
mode:
Diffstat (limited to 'cipher')
-rw-r--r--cipher/ChangeLog5
-rw-r--r--cipher/rndegd.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog
index c3fd15414..bb617a9fd 100644
--- a/cipher/ChangeLog
+++ b/cipher/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-22 Werner Koch <[email protected]>
+
+ * rndegd.c (gather_random): Fixed default socket to be '=entropy'.
+ Thanks to Tomasz Kozlowski.
+
2000-10-12 Werner Koch <[email protected]>
* rijndael.c: New.
diff --git a/cipher/rndegd.c b/cipher/rndegd.c
index 0e4b414b8..666681ee2 100644
--- a/cipher/rndegd.c
+++ b/cipher/rndegd.c
@@ -123,7 +123,7 @@ gather_random( void (*add)(const void*, size_t, int), int requester,
bname = EGD_SOCKET_NAME;
#endif
if ( !bname || !*bname )
- bname = "entropy";
+ bname = "=entropy";
if ( *bname == '=' && bname[1] )
name = make_filename( g10_opt_homedir, bname+1 , NULL );