diff options
author | Luca Boccassi <bluca@debian.org> | 2024-07-18 17:43:56 +0200 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2024-07-18 17:43:56 +0200 |
commit | b61d69fae0eff8ae49ae899cc02cbc277ed156f4 (patch) | |
tree | 6cc81788a1dfcea52709be767a87ebe9c72a2d2d /src/shared | |
parent | polkit: map POLKIT_ALWAYS_QUERY to new polkit flag (diff) | |
download | systemd-b61d69fae0eff8ae49ae899cc02cbc277ed156f4.tar.xz systemd-b61d69fae0eff8ae49ae899cc02cbc277ed156f4.zip |
polkit: fix typo in enum name
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/bus-polkit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/bus-polkit.h b/src/shared/bus-polkit.h index 64340dc338..4b406d358e 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" */ |