Skip to content

Commit

Permalink
[NETFILTER]: SNMP helper: fix debug module param type
Browse files Browse the repository at this point in the history
debug is the debug level, not a bool.

Signed-off-by: Patrick McHardy <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
kaber authored and David S. Miller committed Jun 18, 2006
1 parent 89f2e21 commit 695ecea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/netfilter/ip_nat_snmp_basic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1348,4 +1348,4 @@ static void __exit ip_nat_snmp_basic_fini(void)
module_init(ip_nat_snmp_basic_init);
module_exit(ip_nat_snmp_basic_fini);

module_param(debug, bool, 0600);
module_param(debug, int, 0600);

0 comments on commit 695ecea

Please sign in to comment.