From: wessels <> Date: Tue, 4 Aug 1998 01:28:23 +0000 (+0000) Subject: Don't allow IPC_FIFO on OSF/DigitalUnix X-Git-Tag: SQUID_3_0_PRE1~2939 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=91ef94d625a6a946692a51276abfd855825291e2;p=thirdparty%2Fsquid.git Don't allow IPC_FIFO on OSF/DigitalUnix --- diff --git a/src/ipc.cc b/src/ipc.cc index 5ead68604c..133dc8e911 100644 --- a/src/ipc.cc +++ b/src/ipc.cc @@ -1,6 +1,6 @@ /* - * $Id: ipc.cc,v 1.7 1998/07/22 20:37:30 wessels Exp $ + * $Id: ipc.cc,v 1.8 1998/08/03 19:28:23 wessels Exp $ * * DEBUG: section 54 Interprocess Communication * AUTHOR: Duane Wessels @@ -71,6 +71,10 @@ ipcCreate(int type, const char *prog, char *const args[], const char *name, int char *env_str; int x; +#if HAVE_POLL && defined(_SQUID_OSF_) + assert(type != IPC_FIFO); +#endif + if (rfd) *rfd = -1; if (wfd)