From: Luca Boccassi Date: Thu, 18 Jul 2024 15:43:56 +0000 (+0100) Subject: polkit: fix typo in enum name X-Git-Tag: v257-rc1~878^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b61d69fae0eff8ae49ae899cc02cbc277ed156f4;p=thirdparty%2Fsystemd.git polkit: fix typo in enum name --- 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" */