diff options
author | brian <brian@FreeBSD.org> | 2000-05-22 09:51:18 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2000-05-22 09:51:18 +0000 |
commit | 0e085590db26e34d058be8018525d8e0b871cb26 (patch) | |
tree | 38eff3fa822c08f164f4eddde47822a3c78f5322 /crypto | |
parent | 6d881bfebae2b939fdd46259cc1f3504f87bad97 (diff) | |
download | FreeBSD-src-0e085590db26e34d058be8018525d8e0b871cb26.zip FreeBSD-src-0e085590db26e34d058be8018525d8e0b871cb26.tar.gz |
Don't USE_PIPES
Spammed by: peter
Submitted by: mkn@uk.FreeBSD.org
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/includes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/openssh/includes.h b/crypto/openssh/includes.h index c6f9363..848a82f 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 <stdin> uni-directional ! */ -#define USE_PIPES 1 +/* #define USE_PIPES 1 */ #endif /* INCLUDES_H */ |