Single bit field must be unsigned
/*
- * $Id: client_side.h,v 1.18 2006/09/02 06:49:48 robertc Exp $
+ * $Id: client_side.h,v 1.19 2006/10/26 19:42:24 serassio Exp $
*
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
struct
{
-int deferred:
- 1; /* This is a pipelined request waiting for the current object to complete */
+unsigned deferred: 1; /* This is a pipelined request waiting for the current object to complete */
-int parsed_ok:
- 1; /* Was this parsed correctly? */
+unsigned parsed_ok: 1; /* Was this parsed correctly? */
}
flags;
/*
- * $Id: client_side_reply.h,v 1.15 2006/08/21 00:50:41 robertc Exp $
+ * $Id: client_side_reply.h,v 1.16 2006/10/26 19:42:24 serassio Exp $
*
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
struct
{
-int storelogiccomplete:
- 1;
+unsigned storelogiccomplete: 1;
-int complete:
- 1; /* we have read all we can from upstream */
+unsigned complete: 1; /* we have read all we can from upstream */
bool headersSent;
}