diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-08 11:01:03 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-08 11:01:03 -0700 |
commit | 9965ca476bcbd5799db04a01ada45d50672c3e83 (patch) | |
tree | 9953fde144fa0b3bd7d36b7f0c5401256a70b7b2 | |
parent | 1ecaeefc1fcfc1eae8db44902251148832c2325a (diff) | |
download | vyatta-cfg-qos-9965ca476bcbd5799db04a01ada45d50672c3e83.tar.gz vyatta-cfg-qos-9965ca476bcbd5799db04a01ada45d50672c3e83.zip |
Cleanup error message on conflicting match
-rw-r--r-- | lib/Vyatta/Qos/Match.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/Match.pm b/lib/Vyatta/Qos/Match.pm index 9456605..839ef43 100644 --- a/lib/Vyatta/Qos/Match.pm +++ b/lib/Vyatta/Qos/Match.pm @@ -76,7 +76,7 @@ sub new { # Firewall mark, packet contents, and meta data use different # tc filters my @filters = (keys %filter); - die "Can not combine matchs ", join(' and ',@filters), "\n" + die "Can not combine match on both ", join(' and ',@filters), "\n" if $#filters > 0; return $self; |