From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roger Pau Monne Subject: [PATCH 1/3] hotplug/NetBSD: fix xenstore_write usage in error Date: Thu, 23 Aug 2012 17:53:44 +0100 Message-ID: <1345740826-49830-2-git-send-email-roger.pau@citrix.com> References: <1345740826-49830-1-git-send-email-roger.pau@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1345740826-49830-1-git-send-email-roger.pau@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org Cc: Christoph Egger , Roger Pau Monne List-Id: xen-devel@lists.xenproject.org xenstore_write doesn't exist, use xenstore-write instead. The error function is currently broken without this change. Signed-off-by: Roger Pau Monne Signed-off-by: Christoph Egger --- tools/hotplug/NetBSD/block | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/hotplug/NetBSD/block b/tools/hotplug/NetBSD/block index cf5ff3a..28135f5 100644 --- a/tools/hotplug/NetBSD/block +++ b/tools/hotplug/NetBSD/block @@ -12,7 +12,7 @@ export PATH error() { echo "$@" >&2 - xenstore_write $xpath/hotplug-status error + xenstore-write $xpath/hotplug-status error exit 1 } -- 1.7.7.5 (Apple Git-26)