From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Q7oh1-0001WU-PO for garchives@archives.gentoo.org; Thu, 07 Apr 2011 12:52:17 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8082BE075B; Thu, 7 Apr 2011 12:51:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4F144E075B for ; Thu, 7 Apr 2011 12:51:39 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B423F1B4154 for ; Thu, 7 Apr 2011 12:51:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E0A0480065 for ; Thu, 7 Apr 2011 12:51:37 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <73c862b7920c7d514209d77c584829da28bdd79d.williamH@gentoo> Subject: [gentoo-commits] proj/openrc:master commit in: net/ X-VCS-Repository: proj/openrc X-VCS-Files: net/ethtool.sh X-VCS-Directories: net/ X-VCS-Committer: williamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 73c862b7920c7d514209d77c584829da28bdd79d Date: Thu, 7 Apr 2011 12:51:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: ce16fc5f5e8add6e5bf6f99fa478abda commit: 73c862b7920c7d514209d77c584829da28bdd79d Author: William Hubbs gentoo org> AuthorDate: Thu Apr 7 12:48:56 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Apr 7 12:48:56 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3D73c862b7 fix typo in ethtool.sh This was causing the ethtool interface to not work. X-Gentoo-Bug: 360481 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=3D360481 --- net/ethtool.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/ethtool.sh b/net/ethtool.sh index 8ea1cde..404a3dc 100644 --- a/net/ethtool.sh +++ b/net/ethtool.sh @@ -37,7 +37,7 @@ ethtool_pre_start() { IFS=3D"${OIFS}" local args_pretty=3D"$(_trim "${p}")" # Do nothing if empty - [ -z "${args_prety}" ] && continue + [ -z "${args_pretty}" ] && continue args_pretty=3D"--${opt} $IFACE ${args_pretty}" args=3D"--${opt} $IFACE ${args}" ebegin "ethtool ${args_pretty}"