MINOR: compression: Rename the function check_legacy_http_comp_flt()

To not mix it up with the legacy HTTP representation, this function has been
rename check_implicit_http_comp_flt().
diff --git a/src/filters.c b/src/filters.c
index 6368b20..d082261 100644
--- a/src/filters.c
+++ b/src/filters.c
@@ -336,7 +336,7 @@
 		if (fconf->ops->check)
 			err += fconf->ops->check(proxy, fconf);
 	}
-	err += check_legacy_http_comp_flt(proxy);
+	err += check_implicit_http_comp_flt(proxy);
 	return err;
 }
 
diff --git a/src/flt_http_comp.c b/src/flt_http_comp.c
index 7ffff76..0d3e52b 100644
--- a/src/flt_http_comp.c
+++ b/src/flt_http_comp.c
@@ -1302,7 +1302,7 @@
 
 
 int
-check_legacy_http_comp_flt(struct proxy *proxy)
+check_implicit_http_comp_flt(struct proxy *proxy)
 {
 	struct flt_conf *fconf;
 	int err = 0;