mirror of
https://gitlab.com/shorewall/code.git
synced 2024-12-24 15:18:53 +01:00
Fix bug in tcfilters with device numbers > 9
This commit is contained in:
parent
d2407cb7a0
commit
bf10e104b7
@ -981,7 +981,7 @@ sub process_tc_filter() {
|
|||||||
|
|
||||||
( $device , my $devref ) = dev_by_number( $device );
|
( $device , my $devref ) = dev_by_number( $device );
|
||||||
|
|
||||||
my $devnum = $devref->{number};
|
my $devnum = in_hex $devref->{number};
|
||||||
|
|
||||||
my $tcref = $tcclasses{$device};
|
my $tcref = $tcclasses{$device};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user