43 lines
1.3 KiB
Diff
43 lines
1.3 KiB
Diff
From e057080fcc148b3b1fc613c100340c325bde6c7e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com>
|
|
Date: Mon, 3 May 2021 17:11:26 +0200
|
|
Subject: [PATCH] libselinux: regex: unify parameter names
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Use the same parameter names as in the header `regex.h`.
|
|
|
|
Found by clang-tidy.
|
|
|
|
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
|
|
---
|
|
libselinux/src/regex.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/libselinux/src/regex.c b/libselinux/src/regex.c
|
|
index 770bc3ea1310..73987d9f1063 100644
|
|
--- a/libselinux/src/regex.c
|
|
+++ b/libselinux/src/regex.c
|
|
@@ -319,7 +319,7 @@ char const *regex_version(void)
|
|
}
|
|
|
|
int regex_load_mmap(struct mmap_area *mmap_area, struct regex_data **regex,
|
|
- int unused __attribute__((unused)), bool *regex_compiled)
|
|
+ int do_load_precompregex __attribute__((unused)), bool *regex_compiled)
|
|
{
|
|
int rc;
|
|
uint32_t entry_len;
|
|
@@ -387,7 +387,7 @@ static inline pcre_extra *get_pcre_extra(struct regex_data *regex)
|
|
}
|
|
|
|
int regex_writef(struct regex_data *regex, FILE *fp,
|
|
- int unused __attribute__((unused)))
|
|
+ int do_write_precompregex __attribute__((unused)))
|
|
{
|
|
int rc;
|
|
size_t len;
|
|
--
|
|
2.32.0
|
|
|