]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
add missing BIT_SET ERR_FLAG_CBDATA
authorwessels <>
Fri, 31 Oct 1997 00:49:17 +0000 (00:49 +0000)
committerwessels <>
Fri, 31 Oct 1997 00:49:17 +0000 (00:49 +0000)
src/errorpage.cc

index 3bbbcab93b148f1cd7b4e50d3084cc4394c2ef56..142858517ece8e95f56e4ef377250ed95e19f973 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: errorpage.cc,v 1.97 1997/10/30 05:19:52 wessels Exp $
+ * $Id: errorpage.cc,v 1.98 1997/10/30 17:49:17 wessels Exp $
  *
  * DEBUG: section 4     Error Generation
  * AUTHOR: Duane Wessels
@@ -166,6 +166,7 @@ errorSend(int fd, ErrorState * err)
     debug(4, 3) ("errorSend: FD %d, err=%p\n", fd, err);
     assert(fd >= 0);
     buf = errorBuildBuf(err, &len);
+    BIT_SET(err->flags, ERR_FLAG_CBDATA);
     cbdataAdd(err);
     comm_write(fd, xstrdup(buf), len, errorSendComplete, err, xfree);
 }