From 889a6de926c02c96e2d86f3a0cf9d551c4f13f3a Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Tue, 6 Jun 2017 21:31:23 +0200 Subject: [PATCH] rust: add to features --- src/suricata.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/suricata.c b/src/suricata.c index 1ec7f1c6b4..16ea7cb730 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -777,6 +777,9 @@ static void PrintBuildInfo(void) #endif #ifdef HAVE_MAGIC strlcat(features, "MAGIC ", sizeof(features)); +#endif +#if defined(HAVE_RUST) + strlcat(features, "RUST ", sizeof(features)); #endif if (strlen(features) == 0) { strlcat(features, "none", sizeof(features)); -- 2.47.2