mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fixed small bug
git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@219 8ec27952-4edc-4aab-86aa-e87bb2611832
This commit is contained in:
parent
f3ac1b565e
commit
36f6524ca2
1 changed files with 2 additions and 1 deletions
|
@ -81,7 +81,8 @@ int tc_mark(struct interface *i, tc_hdl_t flowid, int mark)
|
|||
"tc filter add dev %s protocol ip handle %u fw flowid %u:%u",
|
||||
i->name, mark, TC_HDL_MAJ(flowid), TC_HDL_MIN(flowid));
|
||||
|
||||
debug(7, "Add traffic filter to interface '%s': fwmark %u => flowid %u", i->name, mark, flowid);
|
||||
debug(7, "Add traffic filter to interface '%s': fwmark %u => flowid %u:%u",
|
||||
i->name, mark, TC_HDL_MAJ(flowid), TC_HDL_MIN(flowid));
|
||||
debug(8, "System: %s", cmd);
|
||||
|
||||
return system(cmd);
|
||||
|
|
Loading…
Add table
Reference in a new issue