Add comment concerning with it's acceptable to use pipe(2)

This commit is contained in:
Kurt Zeilenga 1999-08-31 17:24:32 +00:00
parent 0197ec6f04
commit 1459ab3495

View file

@ -116,6 +116,10 @@ extern char* WSAGetErrorString LDAP_P((int));
# define tcp_write( s, buf, len) write( s, buf, len )
#ifdef HAVE_PIPE
/*
* Only use pipe() on systems where file and socket descriptors
* are interchangable
*/
#define USE_PIPE HAVE_PIPE
#endif