selinux: constify network address pointer

The network address, either an IPv4 or IPv6 one, is not modified.

Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
Christian Göttsche
2025-03-18 09:33:34 +01:00
committed by Paul Moore
parent 0af2f6be1b
commit 47a1a15645
4 changed files with 8 additions and 8 deletions

View File

@@ -21,6 +21,6 @@
void sel_netnode_flush(void);
int sel_netnode_sid(void *addr, u16 family, u32 *sid);
int sel_netnode_sid(const void *addr, u16 family, u32 *sid);
#endif