From aad79074b5af851a4eba4bc53306cce29f8c2b71 Mon Sep 17 00:00:00 2001 From: "Alan M. Carroll" Date: Wed, 16 Mar 2022 22:07:13 -0500 Subject: [PATCH] Fix issue #78 - ip space failing after global configuration reload. --- plugin/src/ip_space.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/ip_space.cc b/plugin/src/ip_space.cc index 8c154d0..e17bf1e 100644 --- a/plugin/src/ip_space.cc +++ b/plugin/src/ip_space.cc @@ -872,7 +872,7 @@ Mod_ip_space::load(Config &cfg, YAML::Node node, TextView, TextView arg, YAML::N errata.note(R"(While parsing "{}" modifier at {}.)", KEY, key_value.Mark()); return std::move(errata); } - return Handle(new self_type{std::move(expr), arg, info._drtv}); + return Handle(new self_type{std::move(expr), cfg.localize(arg), info._drtv}); } Rv