From 73813569e4bc7204beb76b006ff365538a84345f Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Mon, 22 May 2000 09:51:18 +0000 Subject: [PATCH] Don't USE_PIPES Spammed by: peter Submitted by: mkn@uk.FreeBSD.org --- crypto/openssh/includes.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crypto/openssh/includes.h b/crypto/openssh/includes.h index c6f9363acf09..848a82fb2885 100644 --- a/crypto/openssh/includes.h +++ b/crypto/openssh/includes.h @@ -63,7 +63,9 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } /* * Define this to use pipes instead of socketpairs for communicating with the * client program. Socketpairs do not seem to work on all systems. + * Although pipes are bi-directional in FreeBSD, using pipes here will + * make uni-directional ! */ -#define USE_PIPES 1 +/* #define USE_PIPES 1 */ #endif /* INCLUDES_H */