]> xenbits.xensource.com Git - people/dwmw2/xen.git/commitdiff
hotplug/NetBSD: fix xenstore_write usage in error
authorRoger Pau Monne <roger.pau@citrix.com>
Fri, 31 Aug 2012 09:42:05 +0000 (10:42 +0100)
committerRoger Pau Monne <roger.pau@citrix.com>
Fri, 31 Aug 2012 09:42:05 +0000 (10:42 +0100)
xenstore_write doesn't exist, use xenstore-write instead. The error
function is currently broken without this change.

Signed-off-by: Roger Pau Monne <roger.pau@citrix.com>
Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Committed-by: Ian Campbell <ian.campbell@citrix.com>
tools/hotplug/NetBSD/block

index cf5ff3a2f9974427e66951030280f534a52069f8..28135f516882cfb283b6f07c722c4b6f11438475 100644 (file)
@@ -12,7 +12,7 @@ export PATH
 
 error() {
        echo "$@" >&2
-       xenstore_write $xpath/hotplug-status error
+       xenstore-write $xpath/hotplug-status error
        exit 1
 }