diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2023-02-21 17:56:07 +0000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2023-02-21 19:12:30 +0100 |
commit | 9136f74015106e938db6e91672d502d007d59816 (patch) | |
tree | f863eba7f469f5af56668d1b30ef74ced578a371 | |
parent | 4663ccc89a7fcbf9d901a80730ee925fc7f64c59 (diff) | |
download | passt-9136f74015106e938db6e91672d502d007d59816.tar passt-9136f74015106e938db6e91672d502d007d59816.tar.gz passt-9136f74015106e938db6e91672d502d007d59816.tar.bz2 passt-9136f74015106e938db6e91672d502d007d59816.tar.lz passt-9136f74015106e938db6e91672d502d007d59816.tar.xz passt-9136f74015106e938db6e91672d502d007d59816.tar.zst passt-9136f74015106e938db6e91672d502d007d59816.zip |
selinux/passt.if: Fix typo in passt_read_data interface definition
This is an example interface, currently unused, so it went undetected:
m4 macros need a backtick at the beginning of a block instead of a
single quote.
Fixes: 1f4b7fa0d75d ("passt, pasta: Add examples of SELinux policy modules")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r-- | contrib/selinux/passt.if | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/selinux/passt.if b/contrib/selinux/passt.if index 3ccb7f4..f689a99 100644 --- a/contrib/selinux/passt.if +++ b/contrib/selinux/passt.if @@ -8,7 +8,7 @@ # Copyright (c) 2022 Red Hat GmbH # Author: Stefano Brivio <sbrivio@redhat.com> -interface('passt_read_data',' +interface(`passt_read_data',` gen_require(` type passt_data_t; ') |