From e0531658ae2ceaacd1acf664395110a3e23af0a0 Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Thu, 16 Oct 2025 14:42:11 +0300 Subject: [PATCH] [#4181] Fix flex-id expression --- src/hooks/dhcp/flex_id/load_unload.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/dhcp/flex_id/load_unload.cc b/src/hooks/dhcp/flex_id/load_unload.cc index 5bc5f3a30f..4d9a0d6afc 100644 --- a/src/hooks/dhcp/flex_id/load_unload.cc +++ b/src/hooks/dhcp/flex_id/load_unload.cc @@ -84,7 +84,7 @@ int load(LibraryHandle& handle) { return (1); } - std::string expr = param->stringValue(); + expr = param->stringValue(); if (!expr.empty() && !checkExpression(v6, expr)) { // The error was logged. return (1); @@ -93,7 +93,7 @@ int load(LibraryHandle& handle) { if (expr.empty()) { // Ok, we can continue without the expression. This is likely the - // case when users are only interested in ignore-iaid. + // case when users are only interested in ignore-iaid. LOG_DEBUG(flex_id_logger, DBGLVL_TRACE_BASIC, FLEX_ID_NO_IDENTIFIER_EXPRESSION); } -- 2.47.3