BUG/MINOR: tcp: fix error reporting for TCP rules

tcp-request swapped two output words in the error message, making it meaningless.
diff --git a/src/proto_tcp.c b/src/proto_tcp.c
index 781b24a..7c03798 100644
--- a/src/proto_tcp.c
+++ b/src/proto_tcp.c
@@ -1429,7 +1429,7 @@
 		else
 			memprintf(err,
 			          "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
-			          args[0], args[1], proxy_type_str(curpx), curpx->id);
+			          args[0], proxy_type_str(curpx), curpx->id, args[1]);
 		goto error;
 	}