diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-04-26 21:21:37 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2023-04-26 22:24:58 +0200 |
commit | 8c9f0d83c2299a5bc3964fd6794ca8d8255b3602 (patch) | |
tree | ee98ebc8354e17ebbdeb57dd6291b82039c9e35f /src/shared/image-policy.c | |
parent | update TODO (diff) | |
download | systemd-8c9f0d83c2299a5bc3964fd6794ca8d8255b3602.tar.xz systemd-8c9f0d83c2299a5bc3964fd6794ca8d8255b3602.zip |
image-policy: correct two comments
Diffstat (limited to 'src/shared/image-policy.c')
-rw-r--r-- | src/shared/image-policy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/image-policy.c b/src/shared/image-policy.c index bccd55406e..2d7538ee11 100644 --- a/src/shared/image-policy.c +++ b/src/shared/image-policy.c @@ -671,13 +671,13 @@ const ImagePolicy image_policy_allow = { }; const ImagePolicy image_policy_deny = { - /* Allow policy */ + /* Deny policy */ .n_policies = 0, .default_flags = PARTITION_POLICY_ABSENT, }; const ImagePolicy image_policy_ignore = { - /* Allow policy */ + /* Ignore policy */ .n_policies = 0, .default_flags = PARTITION_POLICY_IGNORE, }; |