From 91ef94d625a6a946692a51276abfd855825291e2 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Tue, 4 Aug 1998 01:28:23 +0000 Subject: [PATCH] Don't allow IPC_FIFO on OSF/DigitalUnix --- src/ipc.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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) -- 2.47.3