Commit 885a66ee authored by Nils Goroll's avatar Nils Goroll

remove more debug sections

parent 29494a1d
......@@ -2082,6 +2082,7 @@ push_vdps(struct req *req, struct nexus_gzip *gz)
CHECK_OBJ_NOTNULL(req->objcore, OBJCORE_MAGIC);
CHECK_OBJ_NOTNULL(req->wrk, WORKER_MAGIC);
#ifdef DEBUG
/* XXX 5-28 */
struct vdp_entry *vdpe;
CHECK_OBJ_NOTNULL(req->vdc, VDP_CTX_MAGIC);
......@@ -2091,6 +2092,7 @@ push_vdps(struct req *req, struct nexus_gzip *gz)
"push_vdps: VDP list before pushing parent VDPs: %s",
vdpe->vdp->name);
}
#endif
i = ObjCheckFlag(req->wrk, req->objcore, OF_GZIPED);
if (gz->is && i && !(req->res_mode & RES_ESI)) {
......@@ -2113,12 +2115,14 @@ push_vdps(struct req *req, struct nexus_gzip *gz)
}
// else just push to parent
#ifdef DEBUG
/* XXX debugging */
CHECK_OBJ_NOTNULL(req->vdc, VDP_CTX_MAGIC);
VTAILQ_FOREACH(vdpe, &req->vdc->vdp, list) {
CHECK_OBJ_NOTNULL(vdpe, VDP_ENTRY_MAGIC);
VSLdbgv(req, "push_vdps: VDP list: %s", vdpe->vdp->name);
}
#endif
return (0);
}
......
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