From b61d69fae0eff8ae49ae899cc02cbc277ed156f4 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Thu, 18 Jul 2024 16:43:56 +0100 Subject: [PATCH] polkit: fix typo in enum name --- src/shared/bus-polkit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/bus-polkit.h b/src/shared/bus-polkit.h index 64340dc338f..4b406d358ec 100644 --- a/src/shared/bus-polkit.h +++ b/src/shared/bus-polkit.h @@ -7,7 +7,7 @@ #include "hashmap.h" #include "user-util.h" -typedef enum PolkitFLags { +typedef enum PolkitFlags { POLKIT_ALLOW_INTERACTIVE = 1 << 0, /* Allow interactive auth (typically not required, because can be derived from bus message/link automatically) */ POLKIT_ALWAYS_QUERY = 1 << 1, /* Query polkit even if client is privileged */ POLKIT_DEFAULT_ALLOW = 1 << 2, /* If polkit is not around, assume "allow" rather than the usual "deny" */ -- 2.47.3