diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-01-16 09:33:09 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-01-16 09:33:09 -0800 |
commit | fdc8849e5686a13c6cb5401af5805ae649035eb0 (patch) | |
tree | 850f2e4fe9c55017699dc5cd5f325d091db791c7 | |
parent | 30a56cdb4680f90e6c371c75c27c6ecec2d7aeec (diff) |
net/ethtool: Fix program call.
I missed removing a call to the old ethtool function wrapper that was
made unneeded by commit d02d3af02.
X-Gentoo-Bug: 399037
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=399037
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | net/ethtool.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ethtool.sh b/net/ethtool.sh index 4e104092..6023d749 100644 --- a/net/ethtool.sh +++ b/net/ethtool.sh @@ -39,7 +39,7 @@ ethtool_pre_start() { args_pretty="--${opt} $IFACE ${args_pretty}" args="--${opt} $IFACE ${args}" ebegin "ethtool ${args_pretty}" - $(_ethtool) ${args} + ethtool ${args} rc=$? eend $rc "ethtool exit code $rc" # TODO: ethtool has MANY different exit codes, with no |