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

Lower-case elective VFP filter names

parent c70284df
......@@ -273,14 +273,14 @@ vfp_esi_fini(struct vfp_ctx *vc, struct vfp_entry *vfe)
}
const struct vfp vfp_esi = {
.name = "ESI",
.name = "esi",
.init = vfp_esi_init,
.pull = vfp_esi_pull,
.fini = vfp_esi_fini,
};
const struct vfp vfp_esi_gzip = {
.name = "ESI_GZIP",
.name = "esi_gzip",
.init = vfp_esi_gzip_init,
.pull = vfp_esi_gzip_pull,
.fini = vfp_esi_fini,
......
......@@ -659,7 +659,7 @@ vfp_gzip_fini(struct vfp_ctx *vc, struct vfp_entry *vfe)
/*--------------------------------------------------------------------*/
const struct vfp vfp_gunzip = {
.name = "GUNZIP",
.name = "gunzip",
.init = vfp_gzip_init,
.pull = vfp_gunzip_pull,
.fini = vfp_gzip_fini,
......@@ -668,7 +668,7 @@ const struct vfp vfp_gunzip = {
};
const struct vfp vfp_gzip = {
.name = "GZIP",
.name = "gzip",
.init = vfp_gzip_init,
.pull = vfp_gzip_pull,
.fini = vfp_gzip_fini,
......@@ -677,7 +677,7 @@ const struct vfp vfp_gzip = {
};
const struct vfp vfp_testgunzip = {
.name = "TESTGUNZIP",
.name = "testgunzip",
.init = vfp_gzip_init,
.pull = vfp_testgunzip_pull,
.fini = vfp_gzip_fini,
......
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