From: Roger Pau Monne Date: Fri, 31 Aug 2012 09:42:05 +0000 (+0100) Subject: hotplug/NetBSD: fix xenstore_write usage in error X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~8009 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=91227c3f91fd62aee773667812da4be9bcf94003;p=xen.git hotplug/NetBSD: fix xenstore_write usage in error 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 Acked-by: Ian Jackson Committed-by: Ian Campbell --- diff --git a/tools/hotplug/NetBSD/block b/tools/hotplug/NetBSD/block index cf5ff3a2f9..28135f5168 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 }