Commit 53a0aebe authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Comment out comparisons which are always true (unsigned >= 0)


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1406 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent cfdc2bdd
......@@ -81,8 +81,8 @@ http2shmlog(struct http *hp, enum httptag t)
{
CHECK_OBJ_NOTNULL(hp, HTTP_MAGIC);
assert(hp->logtag >= HTTP_Rx && hp->logtag <= HTTP_Obj);
assert(t >= HTTP_T_Request && t <= HTTP_T_LostHeader);
assert(/* hp->logtag >= HTTP_Rx && */hp->logtag <= HTTP_Obj);
assert(/* t >= HTTP_T_Request && */t <= HTTP_T_LostHeader);
return (logmtx[hp->logtag][t]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment