diff options
| author | Brian Somers <brian@FreeBSD.org> | 2000-05-22 09:51:18 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 2000-05-22 09:51:18 +0000 |
| commit | 73813569e4bc7204beb76b006ff365538a84345f (patch) | |
| tree | 03cacd8b9bb2401914eb9f3d9463b93f897b0b14 | |
| parent | 3de0a719e7f42d63aaf047332e756df6e19c08ce (diff) | |
Notes
| -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 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 <stdin> uni-directional ! */ -#define USE_PIPES 1 +/* #define USE_PIPES 1 */ #endif /* INCLUDES_H */ |
