From: adrian <> Date: Fri, 25 Oct 2002 11:54:44 +0000 (+0000) Subject: Re-enable this assert, since I've fixed the pipe code. X-Git-Tag: SQUID_3_0_PRE1~563 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fd47fdf32ed712213b3adce2d3b9c27fd53c9349;p=thirdparty%2Fsquid.git Re-enable this assert, since I've fixed the pipe code. --- 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;