2021-02-15 10:25:53

by Michael Weiß

[permalink] [raw]
Subject: [PATCH] docs: ABI: testing: ima_policy: Fixed missing bracket

This fixes a minor typo introduced by commit 34433332841d:
"docs: ABI: testing: make the files compatible with ReST output"

Signed-off-by: Michael Weiß <[email protected]>
---
Documentation/ABI/testing/ima_policy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/ABI/testing/ima_policy b/Documentation/ABI/testing/ima_policy
index e35263f97fc1..2617c21ab843 100644
--- a/Documentation/ABI/testing/ima_policy
+++ b/Documentation/ABI/testing/ima_policy
@@ -29,7 +29,7 @@ Description:
option: [[appraise_type=]] [template=] [permit_directio]
[appraise_flag=] [keyrings=]
base:
- func:= [BPRM_CHECK][MMAP_CHECK][CREDS_CHECK][FILE_CHECK]MODULE_CHECK]
+ func:= [BPRM_CHECK][MMAP_CHECK][CREDS_CHECK][FILE_CHECK][MODULE_CHECK]
[FIRMWARE_CHECK]
[KEXEC_KERNEL_CHECK] [KEXEC_INITRAMFS_CHECK]
[KEXEC_CMDLINE] [KEY_CHECK]
--
2.20.1


2021-02-22 22:08:50

by Jonathan Corbet

[permalink] [raw]
Subject: Re: [PATCH] docs: ABI: testing: ima_policy: Fixed missing bracket

Michael Weiß <[email protected]> writes:

> This fixes a minor typo introduced by commit 34433332841d:
> "docs: ABI: testing: make the files compatible with ReST output"
>
> Signed-off-by: Michael Weiß <[email protected]>
> ---
> Documentation/ABI/testing/ima_policy | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

Applied, but I rewrote the changelog to use a Fixes: tag and to cite the
offending commit in the proper format:

Fixes: 34433332841d ("docs: ABI: testing: make the files compatible with ReST output")

Thanks,

jon