diff options
author | Roy Marples <roy@marples.name> | 2008-04-16 15:23:57 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-04-16 15:23:57 +0000 |
commit | 725b9dc89c59248c4503f27e62dcd1333001c082 (patch) | |
tree | c77af6d3360b30aa8818139670399d22fb49532f /net | |
parent | 22d650c4503f34fcd808e55546be7ed110cf81e3 (diff) |
Use qlen instead of txqueuelen so we work with busybox iproute2, Gentoo #217948
Diffstat (limited to 'net')
-rw-r--r-- | net/iproute2.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/iproute2.sh b/net/iproute2.sh index de765378..168771f0 100644 --- a/net/iproute2.sh +++ b/net/iproute2.sh @@ -189,7 +189,7 @@ iproute2_pre_start() # TX Queue Length support local len= eval len=\$txqueuelen_${IFVAR} - [ -n "${len}" ] && ip link set txqueuelen "${len}" dev "${IFACE}" + [ -n "${len}" ] && ip link set qlen "${len}" dev "${IFACE}" local tunnel= eval tunnel=\$iptunnel_${IFVAR} |