From 7b6d5b160ed56fec13082617afe1686217333557 Mon Sep 17 00:00:00 2001
From: Andreas Loibl <andreas@andreas-loibl.de>
Date: Tue, 29 May 2012 17:01:35 +0200
Subject: combine_iso.bash: removed extra spaces

---
 combine_iso.bash | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/combine_iso.bash b/combine_iso.bash
index 4f97991..2f62655 100755
--- a/combine_iso.bash
+++ b/combine_iso.bash
@@ -29,12 +29,12 @@ do
 		while IFS=: read var val
 		do
 			case "$var" in
-			"System id") opt_sysid=$val;;
-			"Volume id") opt_volid=$val;;
-			"Volume set id") opt_setid=$val;;
-			"Publisher id") opt_pubid=$val;;
-			"Data preparer id") opt_preid=$val;;
-			"Application id") opt_appid=$val;;
+			"System id") opt_sysid=$(echo $val);;
+			"Volume id") opt_volid=$(echo $val);;
+			"Volume set id") opt_setid=$(echo $val);;
+			"Publisher id") opt_pubid=$(echo $val);;
+			"Data preparer id") opt_preid=$(echo $val);;
+			"Application id") opt_appid=$(echo $val);;
 			"    Key 55 AA") is_bootable=1;;
 			esac
 		done < <(isoinfo -d -i "$1")
-- 
cgit v1.0