From 033fbc0f8532a159ee143a875900cc6af139e83e Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Mon, 18 Feb 2019 14:27:18 +0100 Subject: [PATCH] suricata: fix list keywords URL in release mode The tags are suricata-X.X.X so we need to update the chain to get URLs right. --- src/suricata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/suricata.h b/src/suricata.h index e1cf5a1043..7e11c00855 100644 --- a/src/suricata.h +++ b/src/suricata.h @@ -86,7 +86,7 @@ #define DOC_URL "https://suricata.readthedocs.io/en/" #if defined RELEASE -#define DOC_VERSION PROG_VER +#define DOC_VERSION "suricata-" PROG_VER #else #define DOC_VERSION "latest" #endif