Commit 6b388a21 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Give busyobj a copy of the hash-key so directors can access it.

(VDD14q3 item)
parent 7d7b4137
......@@ -517,6 +517,8 @@ struct busyobj {
struct vsl_log vsl[1];
struct vsb *synth_body;
uint8_t digest[DIGEST_LEN];
};
......
......@@ -151,6 +151,8 @@ VBO_GetBusyObj(struct worker *wrk, const struct req *req)
bo->t_first = bo->t_prev = NAN;
bo->doclose = SC_NULL;
memcpy(bo->digest, req->digest, sizeof bo->digest);
return (bo);
}
......
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