Commit 9c599baa authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Gah! spell "committed" right.

parent 05aba583
......@@ -502,7 +502,7 @@ oc_getlru(const struct objcore *oc)
enum busyobj_state_e {
BOS_INVALID = 0, /* don't touch (yet) */
BOS_REQ_DONE, /* beresp.* can be examined */
BOS_COMITTED, /* beresp.* can be examined */
BOS_COMMITTED, /* beresp.* can be examined */
BOS_FETCHING, /* beresp.* can be examined */
BOS_FINISHED, /* object is complete */
BOS_FAILED, /* something went wrong */
......
......@@ -248,7 +248,7 @@ vbf_stp_fetchhdr(struct worker *wrk, struct busyobj *bo)
}
if (bo->state == BOS_REQ_DONE)
VBO_setstate(bo, BOS_COMITTED);
VBO_setstate(bo, BOS_COMMITTED);
if (bo->do_esi)
bo->do_stream = 0;
......@@ -455,7 +455,7 @@ vbf_stp_fetch(struct worker *wrk, struct busyobj *bo)
if (bo->do_stream)
HSH_Unbusy(&wrk->stats, obj->objcore);
if (bo->state == BOS_COMITTED)
if (bo->state == BOS_COMMITTED)
VBO_setstate(bo, BOS_FETCHING);
else if (bo->state != BOS_FAILED)
WRONG("Wrong bo->state");
......
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