Reflect vfp_filter_list field name in panic string

parent 8c0c414f
......@@ -378,8 +378,10 @@ pan_busyobj(struct vsb *vsb, const struct busyobj *bo)
if (bo->vfc != NULL)
pan_vfp(vsb, bo->vfc);
if (bo->vfp_filter_list != NULL)
VSB_printf(vsb, "filter_list = \"%s\",\n", bo->vfp_filter_list);
if (bo->vfp_filter_list != NULL) {
VSB_printf(vsb, "vfp_filter_list = \"%s\",\n",
bo->vfp_filter_list);
}
WS_Panic(vsb, bo->ws);
VSB_printf(vsb, "ws_bo = %p,\n", (void *)bo->ws_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