From f5d03bbe13a3026b33d5fb93a840d87be11bf2c2 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Sat, 14 Feb 2026 14:08:04 +0000 Subject: [PATCH] MINOR: deviceatlas: define header_evidence_entry in dummy library header Add the struct header_evidence_entry definition to the dummy dac.h to accommodate the ongoing deviceatlas module update which now iterates over atlas header_priorities to precompute maxhdrlen. The struct was already referenced by struct da_atlas but lacked a definition in the dummy header. --- addons/deviceatlas/dummy/dac.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/addons/deviceatlas/dummy/dac.h b/addons/deviceatlas/dummy/dac.h index 5540e702f..038046f77 100644 --- a/addons/deviceatlas/dummy/dac.h +++ b/addons/deviceatlas/dummy/dac.h @@ -141,6 +141,11 @@ enum { DA_INITIAL_MEMORY_ESTIMATE = 1024 * 1024 * 14 }; +struct header_evidence_entry { + const char *name; + da_evidence_id_t id; +}; + struct da_config { unsigned int cache_size; unsigned int __reserved[15]; /* enough reserved keywords for future use */ -- 2.47.3