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: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
b54ad409fd
commit
f79fca55f9
@@ -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;
|
||||||
|
Reference in New Issue
Block a user