From c364df47dd3bdaf0e795f563e8cefd2e0400135e Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 9 Oct 2024 22:13:21 +0100 Subject: [PATCH] Core: fix the check as well as the message --- volatility3/schemas/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/schemas/__init__.py b/volatility3/schemas/__init__.py index d4a78c971..d8cea482e 100644 --- a/volatility3/schemas/__init__.py +++ b/volatility3/schemas/__init__.py @@ -84,7 +84,7 @@ def valid( if producer: if producer.get("name") == "dwarf2json" and [ int(x) for x in ".".split(producer.get("version")) - ] < (0, 8, 0): + ] < (0, 9, 0): vollog.warning( "Dwarf2json < 0.9.0 is known to produce faulty symbols for kernels > 6.0.0" )