From 8f5b4814954c76f944fc207dfc3cedc0e51a83e3 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Tue, 26 May 2026 19:17:29 -0700 Subject: [PATCH] ReportPath set field order/user defined field Signed-off-by: James Cherry --- search/ReportPath.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/search/ReportPath.cc b/search/ReportPath.cc index 4b99f4a9..1bfcdfc6 100644 --- a/search/ReportPath.cc +++ b/search/ReportPath.cc @@ -3252,9 +3252,9 @@ ReportPath::reportLine(std::string_view what, reportFieldBlank(field, line); } else if (field == field_case_) - line += line_case; + reportField(line_case, field, line); else if (field->getValue()) - line += field->value(path, this); + reportField(field->value(path, this), field, line); first_field = false; }