MINOR: http: make resp_ver and status ACLs check for the presence of a response

The two ACL fetches "resp_ver" and "status", if used in a request despite
the warning, would return a match of zero length. This is inappropriate,
better return a non-match to be more consistent with other ACL processing.
diff --git a/src/proto_http.c b/src/proto_http.c
index 89b55b3..6ec1d64 100644
--- a/src/proto_http.c
+++ b/src/proto_http.c
@@ -8187,6 +8187,9 @@
 
 	CHECK_HTTP_MESSAGE_FIRST();
 
+	if (txn->rsp.msg_state < HTTP_MSG_BODY)
+		return 0;
+
 	len = txn->rsp.sl.st.v_l;
 	ptr = txn->rsp.chn->buf->p;
 
@@ -8213,6 +8216,9 @@
 
 	CHECK_HTTP_MESSAGE_FIRST();
 
+	if (txn->rsp.msg_state < HTTP_MSG_BODY)
+		return 0;
+
 	len = txn->rsp.sl.st.c_l;
 	ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c;