mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-15 12:14:32 +01:00
Fix TOS(tos/mask) in tcrules.
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
aa503e7211
commit
95e4f8dd91
@ -463,7 +463,12 @@ sub process_tc_rule( ) {
|
||||
}
|
||||
}
|
||||
|
||||
($cmd, $rest) = split( '/', $mark, 2 );
|
||||
if ( $mark =~ /^TOS/ ) {
|
||||
$cmd = $mark;
|
||||
$rest = '';
|
||||
} else {
|
||||
($cmd, $rest) = split( '/', $mark, 2 );
|
||||
}
|
||||
|
||||
$list = '';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user