From fd47fdf32ed712213b3adce2d3b9c27fd53c9349 Mon Sep 17 00:00:00 2001 From: adrian <> Date: Fri, 25 Oct 2002 11:54:44 +0000 Subject: [PATCH] Re-enable this assert, since I've fixed the pipe code. --- src/comm.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/comm.cc b/src/comm.cc index d50c1d3292..5fbe0d4ba5 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $Id: comm.cc,v 1.353 2002/10/24 22:50:59 adrian Exp $ + * $Id: comm.cc,v 1.354 2002/10/25 05:54:44 adrian Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -1277,7 +1277,7 @@ _comm_close(int fd, char *file, int line) return; assert(F->flags.open); /* The following fails because ipc.c is doing calls to pipe() to create sockets! */ - /* assert(fdc_table[fd].active == 1); */ + assert(fdc_table[fd].active == 1); assert(F->type != FD_FILE); PROF_start(comm_close); F->flags.closing = 1; -- 2.47.3