MINOR: http: silently support the "block" action for http-request

This one will be used to convert "block" rules into "http-request block".
diff --git a/src/proto_http.c b/src/proto_http.c
index 9632b27..875cedc 100644
--- a/src/proto_http.c
+++ b/src/proto_http.c
@@ -8695,7 +8695,7 @@
 	if (!strcmp(args[0], "allow")) {
 		rule->action = HTTP_REQ_ACT_ALLOW;
 		cur_arg = 1;
-	} else if (!strcmp(args[0], "deny")) {
+	} else if (!strcmp(args[0], "deny") || !strcmp(args[0], "block")) {
 		rule->action = HTTP_REQ_ACT_DENY;
 		cur_arg = 1;
 	} else if (!strcmp(args[0], "tarpit")) {