Commit b5ae8160 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add missing assert

parent 2bd31b50
......@@ -463,7 +463,7 @@ event_load(VRT_CTX, struct vmod_priv *priv)
VRT_RemoveFilter(ctx, &xyzzy_vfp_rot13, &xyzzy_vdp_rot13);
AZ(VRT_AddFilter(ctx, &xyzzy_vfp_rot13, &xyzzy_vdp_rot13));
VRT_AddFilter(ctx, NULL, &xyzzy_vdp_pedantic);
AZ(VRT_AddFilter(ctx, NULL, &xyzzy_vdp_pedantic));
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