diff options
| author | Jan Engelhardt <[email protected]> | 2007-07-07 22:15:12 -0700 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2007-07-10 22:16:56 -0700 |
| commit | cff533ac12494fa002e2c46acc94d670e5f636a2 (patch) | |
| tree | ab159436fa3f5c282455afafcf136fd03fa8225a /include/linux/netfilter | |
| parent | 7bfe24611671ec76b44281e582b38535e21f01a9 (diff) | |
[NETFILTER]: x_tables: switch hotdrop to bool
Switch the "hotdrop" variables to boolean
Signed-off-by: Jan Engelhardt <[email protected]>
Signed-off-by: Patrick McHardy <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'include/linux/netfilter')
| -rw-r--r-- | include/linux/netfilter/x_tables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h index 7e733a6ba4f6..b8577d18d10d 100644 --- a/include/linux/netfilter/x_tables.h +++ b/include/linux/netfilter/x_tables.h @@ -148,7 +148,7 @@ struct xt_match const void *matchinfo, int offset, unsigned int protoff, - int *hotdrop); + bool *hotdrop); /* Called when user tries to insert an entry of this type. */ /* Should return true or false. */ |