From 3e6d83e64dbedebb8829289ef7fc78f3958a0523 Mon Sep 17 00:00:00 2001 From: yujian Date: Wed, 13 Sep 2006 07:19:40 +0000 Subject: [PATCH] Replace comma with whitespace in params' string. --- lustre/scripts/lmc2csv.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lustre/scripts/lmc2csv.pl b/lustre/scripts/lmc2csv.pl index 6bd0a9f..14a690d 100644 --- a/lustre/scripts/lmc2csv.pl +++ b/lustre/scripts/lmc2csv.pl @@ -173,13 +173,13 @@ foreach my $mds (@{$objs{"mds"}}) { my $lov = $mds->{"lov"}; my $mkfs_options=""; if (defined($lov->{"stripe_sz"})) { - $mkfs_options .= "lov.stripe.size=" . $lov->{"stripe_sz"} . ","; + $mkfs_options .= "lov.stripe.size=" . $lov->{"stripe_sz"} . " "; } if (defined($lov->{"stripe_cnt"})) { - $mkfs_options .= "lov.stripe.count=" . $lov->{"stripe_cnt"} . ","; + $mkfs_options .= "lov.stripe.count=" . $lov->{"stripe_cnt"} . " "; } if (defined($lov->{"stripe_pattern"})) { - $mkfs_options .= "lov.stripe.pattern=" . $lov->{"stripe_pattern"} . ","; + $mkfs_options .= "lov.stripe.pattern=" . $lov->{"stripe_pattern"} . " "; } chop($mkfs_options); if ($mkfs_options ne "") { -- 1.8.3.1