summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--includes.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index affee131a..4fe35ba73 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120000201
2 - Use socket pairs by default (instead of pipes). Prevents race condition
3 on several (buggy) OSs. Report and fix from tridge@linuxcare.com
4
120000127 520000127
2 - Seed OpenSSL's random number generator before generating RSA keypairs 6 - Seed OpenSSL's random number generator before generating RSA keypairs
3 - Split random collector into seperate file 7 - Split random collector into seperate file
diff --git a/includes.h b/includes.h
index 3abf2851d..746e76e58 100644
--- a/includes.h
+++ b/includes.h
@@ -122,6 +122,6 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
122 * Define this to use pipes instead of socketpairs for communicating with the 122 * Define this to use pipes instead of socketpairs for communicating with the
123 * client program. Socketpairs do not seem to work on all systems. 123 * client program. Socketpairs do not seem to work on all systems.
124 */ 124 */
125#define USE_PIPES 1 125/* #define USE_PIPES 1 */
126 126
127#endif /* INCLUDES_H */ 127#endif /* INCLUDES_H */