summaryrefslogtreecommitdiffstats
path: root/remote/modules/vmplayer/data
diff options
context:
space:
mode:
Diffstat (limited to 'remote/modules/vmplayer/data')
-rw-r--r--remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include4
1 files changed, 2 insertions, 2 deletions
diff --git a/remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include b/remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include
index 1178ca2f..5ac0454a 100644
--- a/remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include
+++ b/remote/modules/vmplayer/data/etc/openslx/vmware/run-virt.include
@@ -21,9 +21,9 @@
function clean_string ()
{
if [ "$#" -ge 1 ]; then
- echo "$@" | tr '[:upper:]' '[:lower:]' | tr -d '\t _./'
+ echo "$@" | tr '[A-Z]' '[a-z]' | tr -d '\t _./'
else
- cat - | tr '[:upper:]' '[:lower:]' | tr -d '\t _./'
+ cat - | tr '[A-Z]' '[a-z]' | tr -d '\t _./'
fi
}