Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f79fca55 authored by Jan Engelhardt's avatar Jan Engelhardt Committed by David S. Miller
Browse files

netfilter: xtables: add missing const qualifier to xt_tgchk_param



When entryinfo was a standalone parameter to functions, it used to be
"const void *". Put the const back in.

Signed-off-by: default avatarJan Engelhardt <jengelh@medozas.de>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b54ad409
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -251,7 +251,7 @@ struct xt_target_param {
 */
 */
struct xt_tgchk_param {
struct xt_tgchk_param {
	const char *table;
	const char *table;
	void *entryinfo;
	const void *entryinfo;
	const struct xt_target *target;
	const struct xt_target *target;
	void *targinfo;
	void *targinfo;
	unsigned int hook_mask;
	unsigned int hook_mask;