From 24fe85002e7a5e93b7b88aa9968a8455b5f7e0e6 Mon Sep 17 00:00:00 2001 From: Radovan Sroka Date: Tue, 4 Jul 2023 20:05:34 +0200 Subject: [PATCH] Fix broken backwards compatibility backend numbers - when debian backend was merged it casued a change in backend numbering so this commit fixes the numbers as they were before - this numbers are also in trustdb so it is affected as well Signed-off-by: Radovan Sroka --- src/library/fapolicyd-backend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/library/fapolicyd-backend.h b/src/library/fapolicyd-backend.h index 6656b71a..7ab03c9b 100644 --- a/src/library/fapolicyd-backend.h +++ b/src/library/fapolicyd-backend.h @@ -28,7 +28,7 @@ #include "conf.h" #include "llist.h" -typedef enum { SRC_UNKNOWN, SRC_RPM, SRC_DEB, SRC_FILE_DB } trust_src_t; +typedef enum { SRC_UNKNOWN, SRC_RPM, SRC_FILE_DB, SRC_DEB } trust_src_t; // source, size, sha #define DATA_FORMAT "%u %lu %64s"