61 lines
2.1 KiB
Diff
61 lines
2.1 KiB
Diff
|
From 215d83598c180055cddd3787bcb6e1abe8a416d9 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:24 +0200
|
||
|
Subject: [PATCH] libselinux: sidtab_sid_stats(): unify parameter name
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Found by clang-tidy.
|
||
|
|
||
|
libselinux/src/avc_sidtab.h:32:6: warning: function 'sidtab_sid_stats' has a definition with different parameter names [readability-inconsistent-declaration-parameter-name]
|
||
|
void sidtab_sid_stats(struct sidtab *s, char *buf, int buflen) ;
|
||
|
^
|
||
|
libselinux/src/avc_sidtab.c:103:6: note: the definition seen here
|
||
|
void sidtab_sid_stats(struct sidtab *h, char *buf, int buflen)
|
||
|
^
|
||
|
libselinux/src/avc_sidtab.h:32:6: note: differing parameters are named here: ('s'), in definition: ('h')
|
||
|
void sidtab_sid_stats(struct sidtab *s, char *buf, int buflen) ;
|
||
|
^ ~
|
||
|
h
|
||
|
|
||
|
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
|
||
|
---
|
||
|
libselinux/src/avc_sidtab.c | 6 +++---
|
||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/libselinux/src/avc_sidtab.c b/libselinux/src/avc_sidtab.c
|
||
|
index 8c81cf65d2ef..f179d8558a45 100644
|
||
|
--- a/libselinux/src/avc_sidtab.c
|
||
|
+++ b/libselinux/src/avc_sidtab.c
|
||
|
@@ -100,7 +100,7 @@ sidtab_context_to_sid(struct sidtab *s,
|
||
|
return rc;
|
||
|
}
|
||
|
|
||
|
-void sidtab_sid_stats(struct sidtab *h, char *buf, int buflen)
|
||
|
+void sidtab_sid_stats(struct sidtab *s, char *buf, int buflen)
|
||
|
{
|
||
|
int i, chain_len, slots_used, max_chain_len;
|
||
|
struct sidtab_node *cur;
|
||
|
@@ -108,7 +108,7 @@ void sidtab_sid_stats(struct sidtab *h, char *buf, int buflen)
|
||
|
slots_used = 0;
|
||
|
max_chain_len = 0;
|
||
|
for (i = 0; i < SIDTAB_SIZE; i++) {
|
||
|
- cur = h->htable[i];
|
||
|
+ cur = s->htable[i];
|
||
|
if (cur) {
|
||
|
slots_used++;
|
||
|
chain_len = 0;
|
||
|
@@ -124,7 +124,7 @@ void sidtab_sid_stats(struct sidtab *h, char *buf, int buflen)
|
||
|
|
||
|
snprintf(buf, buflen,
|
||
|
"%s: %u SID entries and %d/%d buckets used, longest "
|
||
|
- "chain length %d\n", avc_prefix, h->nel, slots_used,
|
||
|
+ "chain length %d\n", avc_prefix, s->nel, slots_used,
|
||
|
SIDTAB_SIZE, max_chain_len);
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.32.0.rc1
|
||
|
|