aboutsummaryrefslogtreecommitdiffstats
path: root/tools/hotplug
diff options
context:
space:
mode:
authorIan Jackson <Ian.Jackson@eu.citrix.com>2010-12-15 13:34:26 +0000
committerIan Jackson <Ian.Jackson@eu.citrix.com>2010-12-15 13:34:26 +0000
commit09150fd700874bf0362f60856d9ba70944aff5ee (patch)
tree1b0edfd315103818c9c33c8ee38d2cf954f1134d /tools/hotplug
parent2a8b89ef84ea0a55cc0842e3cad27c7ca12410b5 (diff)
downloadxen-09150fd700874bf0362f60856d9ba70944aff5ee.tar.gz
xen-09150fd700874bf0362f60856d9ba70944aff5ee.tar.bz2
xen-09150fd700874bf0362f60856d9ba70944aff5ee.zip
blktap2: fix up non-ASCII characters in 21129:bf74d9c31674
21129:bf74d9c31674 contained UTF-8-encoded nonbreaking spaces. Sorry for not noticing this. Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/hotplug')
-rw-r--r--tools/hotplug/Linux/xen-hotplug-cleanup12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/hotplug/Linux/xen-hotplug-cleanup b/tools/hotplug/Linux/xen-hotplug-cleanup
index 237a2d1700..fcaa8fc8c6 100644
--- a/tools/hotplug/Linux/xen-hotplug-cleanup
+++ b/tools/hotplug/Linux/xen-hotplug-cleanup
@@ -21,12 +21,12 @@ if [ "$vm" != "" ]; then
# if the vm path does not exist and the device class is 'vbd' then we may have
# a tap2 device
-  $(xenstore-read "$vm_dev" 2>/dev/null) || \
-  {
-     if [ "${path_array[1]}" = "vbd" ]; then
-        vm_dev="$vm/device/tap2/${path_array[3]}"
-     fi
-  }
+ $(xenstore-read "$vm_dev" 2>/dev/null) || \
+ {
+ if [ "${path_array[1]}" = "vbd" ]; then
+ vm_dev="$vm/device/tap2/${path_array[3]}"
+ fi
+ }
else
vm_dev=
fi